Closed ArtPoon closed 7 years ago
man [command name]
man mv
pwd
pwd
ls [OPTION]... [FILE]...
-a
can be used to view hidden files.ls -a
cd [DIRECTORY NAME]
cd Desktop
history
history
wc [OPTION]... [FILE]...
-l
can be used to view line count.wc example.txt
cat [FILE NAME]
cat example.txt
head [OPTION]... [FILE]...
-n#
, where # is an integer, can be used to view a specific number of lines.head example.txt
tail [OPTION]... [FILE]...
-n#
, where # is an integer can be used to view a specific number of lines.tail example.txt
grep [OPTIONS] PATTERN [FILE...]
grep examplePattern example.txt
touch [OPTION]... [FILE]...
touch example.txt
cp [OPTION]... [SOURCE]... [DIRECTORY]...
-r
can be used to copy directories.cp example.txt ~/Desktop
mv [OPTION]... [SOURCE]... [DIRECTORY]...
-r
can be used to move directories.mv example.txt ~/Desktop
rm [OPTION]... [SOURCE]... [DIRECTORY]...
-r
can be used to delete directories.rm example.txt
mkdir [OPTION]... [DIRECTORY]...
mkdir exampleDirectory
rmdir [OPTION]... [DIRECTORY]...
rmdir exampleDirectory
Above is the Markdown documentation for the Linux commands. I will follow up with the Python commands ASAP (early tomorrow morning at the latest). If more commands are needed I can edit the comment accordingly.
You now have write access to the courses repo
On May 16, 2017, at 3:46 PM, Faisal Abu-Sardanah notifications@github.com wrote:
Above is the Markdown documentation for the Linux commands. I will follow up with the Python commands ASAP (early tomorrow morning at the latest). If more commands are needed I can edit the comment accordingly.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
I have just uploaded the python quick reference. If my documentation is sufficient I can close this issue. If not I can modify the documentation accordingly.
Can reuse/repurpose the following Markdown files:
Other command references need to be extracted and summarized from the other Markdowns.