The commands that you type in are simply Linux commands. They are not putty commands. Here are few examples:
ls - to list files in a directory:
Code:
ls
handbook.pdf iso
ls -lh
total 3.4M
-rw-r--r-- 1 pavlo pavlo 3.4M 2007-05-15 05:53 handbook.pdf
drwxr-xr-x 2 pavlo pavlo 4.0K 2007-04-10 00:25 iso
ls iso/
rhel-5-client-x86_64-disc6.iso
Code:
cd iso
Code:
cp ../handbook.pdf .
Code:
mv handbook.pdf howto.pdf
Code:
rm handbook-draft.pdf
Code:
mkdir new
Code:
pwd
/home/pavlo/example/iso
Code:
date
Tue May 15 06:07:45 UTC 2007
Code:
apt-get install expect
man - most important of all commands (opens manual pages for other commands):
Code:
man expect
A list of some Linux commands: Linux bash commands - MAN Pages
0 comments:
Post a Comment