>_ MEEGROW LABS · ZERO TO AI HERO
← Course

The AI Quick-Start
Cheat Sheet

Everything a beginner needs to start commanding a computer & AI — Hindi + English.

💡 Tip: press Ctrl/Cmd + P to save this as a PDF.

1 Terminal essentials

pwdwhere am I?
मैं अभी कहाँ हूँ
lslist what's here
यहाँ क्या-क्या है
cd foldergo into a folder
फोल्डर के अंदर जाओ
cd ..go back up one level
एक स्तर ऊपर
cd ~go home
होम पर जाओ
mkdir namemake a folder
नया फोल्डर बनाओ
touch file.txtmake a file
नई फाइल बनाओ
cat fileread a file
फाइल पढ़ो
cp a bcopy · mv a b move/rename
कॉपी · मूव/रिनेम
rm filedelete (no undo!)
हटाओ — वापस नहीं आएगा
grep word filefind text inside a file
फाइल में शब्द ढूँढो
💻 On Windows? Install Git Bash or WSL once — then every command above works the same.

2 Git in 6 commands

git initstart tracking a project
git add .stage your changes
git commit -m "msg"save a snapshot
git statuswhat changed?
git logsee history
git pushupload to GitHub

3 Talking to AI (the skill that 10x's you)

▶ Start the free course → Lesson 1