
pwd
This command (print working directory) will show your current working directory. You should be in your home directory.
ls
chdir public_html
mkdir public_html
ls -l
The directory name will appear on the far right side of the list while the permissions will be displayed on the far left side of the list.
chmod 755 public_html
cd public_html
pwd
The output of this command should show:
/export/grad/yourlogin/public_html
You should be in your public_html directory.
ls -l
pwd
This command (print working directory) will show your current working directory. You should be in the public_html directory.
ls -l
chmod 644 index.html
~yourlogin
