Overview of the most common basic SHELL commands. I typically use PuTTY, a free telnet and SSH Client for Windows and Unix platforms. It is lightweight and easy to use and doesn't need installing (can run from a flash disk).
cd
...change directory, method used for moving from one folder to another.
cd foldername/foldername2
...would take you to foldername2.
cd ..
...moves up one directory.
cd /
...moves you to root.
pwd
...prints to console your present working directory - where you currently are.
ls
...list contents of current directory.
ls -l
...shows long format inc. group owner, size, date modified, permissions.
ls -a
...shows ALL files inc. hidden files.
ls -R
...lists contents of sub directories recursively.
ls -la
...the above options can be used at the same time.
ls foldername/foldername
...list items in folder without actually moving to it.
touch file.html
...use the touch command to create files.
rm file.html
...use the rm command to remove a file.
mkdir myfolder
...use the mkdir command to create a new directory/folder.
rmdir myfolder
...use the rmdir command to remove a directory/folder, folder must be empty.
mv folder1/file.html folder2/file.html
...use the mv command to move a file. Can also be used to rename a file.
zip -r foo.zip foo/
...compress the folder 'foo' and all of its contents into a zip file called 'foo.zip'.
zip foo.zip foo.html
...compress the file'foo.html' into a zip file called 'foo.zip'.
chmod 755 file.html
...changes the file.html file permissions, same for a folder.
chmod -r 755 myfolder
...changes permissions for that folder and all folders and files inside it recursively.
Here are the chmod octal numeric values
chown user:myself file.html
...changes the ownership of file.html to the user called 'myself'.