Everything a beginner needs to start commanding a computer & AI — Hindi + English.
💡 Tip: press Ctrl/Cmd + P to save this as a PDF.
| pwd | where am I? मैं अभी कहाँ हूँ |
| ls | list what's here यहाँ क्या-क्या है |
| cd folder | go into a folder फोल्डर के अंदर जाओ |
| cd .. | go back up one level एक स्तर ऊपर |
| cd ~ | go home होम पर जाओ |
| mkdir name | make a folder नया फोल्डर बनाओ |
| touch file.txt | make a file नई फाइल बनाओ |
| cat file | read a file फाइल पढ़ो |
| cp a b | copy · mv a b move/rename कॉपी · मूव/रिनेम |
| rm file | delete (no undo!) हटाओ — वापस नहीं आएगा |
| grep word file | find text inside a file फाइल में शब्द ढूँढो |
| git init | start tracking a project |
| git add . | stage your changes |
| git commit -m "msg" | save a snapshot |
| git status | what changed? |
| git log | see history |
| git push | upload to GitHub |