pwd
command, which stands for "print working directory".
pwdNotice that your home directory has the same name as your username, and is located inside /home.
lsYou should see at least one directory - it244.
ls
will not show files whose
first character is a . (dot).
ls
with the -a option:
ls -a
cd
cd it244
mkdir ex
ls
mkdir hw
ls
cd ex
pwdIf you are not in /home/UNIX_ID/it244/ex, see me.
mkdir ex2
ls
cd ex2
touch ex2.sh
touch
is a command with a special purpose.
lsYou should see the file you just created.
~ghoffman/it244_test/ex02.shThe script will prompt you for your Unix username.