| 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 |
| cp file file2 | Copies 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 | |||
-aux
-x
command to get a list of your processes, then you will type
kill
-9
####
where
####
is the number of that particular process to kill it.
| gunzip file.tar.gz | Unzip's the file.tar.gz to file.tar | |||
| gzip file.tar.gz file.tar | Zip's the file.tar to file.tar.gz | |||
| tar -xvf file.tar | Untar's the file file.tar | |||
| tar -xvfp file.tar | Untar's the file file.tar with file permissions | |||
| tar -cvf mytar.tar file1 file2 | Makes Tar mytar.tar with file1 & file2 | |||
| tar -cvf mytar.tar /usr/home/bob | Makes tar mytar.tar from directory /usr/home/bob | |||
| tar -cvfp mytar.tar file1 file2 | Makes Tar mytar.tar preserving file permissions | |||
filename
or type
cat
filename
|
more
to go page-by-page scrolling.
To leave top, simply hit Control-C.
command
typed at the unix prompt, where command is the unix command you are interesting in looking up.
|
|