Eggdrop shell support
satexas.com
What are the basic commands in Unix to move around my account?
- pwd [Tells you your current directory (in full)]
- cd [Takes you to your HOME (starting directory)]
- cd .. [Moves you backwards one directory]
- cd /dir/dir [Moves you to a particular directory]
What are the basic Unix commands to copy & move files?
- cp file file2 [opies the file to file2
- mv file newfile [Moves, or renames, the file]
- rm file [Removes the file permanently]
- rm -rf file [Forces a removal of a file]
- rm -rf dirname [Removes a directory, and all it's subdirectories]