Will the images be uploaded to sunny.uni.edu?

Will the folder be automatically created?






bash-2.03$ ls show*
 
showImages.html                        <---------- This is the file you are looking at.
 
bash-2.03$ 
bash-2.03$ pwd
 
/export/home/jacobson
 
bash-2.03$ 
bash-2.03$ cd images2008               <----------- The folder images2008 was automatically created!
bash-2.03$ 
bash-2.03$ ls
 
image0.jpg  image1.jpg  image2.jpg  image3.jpg            <-------- ls for list files shows it has all the
                                                                       image files (JPEGS) that I was using
                                                                       in Dreamweaver.

bash-2.03$ 
bash-2.03$ ls -l
 
total 156
-rw-r--r--   1 jacobson faculty    23541 Mar  7 11:34 image0.jpg       <---- ls -l shows their actual sizes
-rw-r--r--   1 jacobson faculty    13717 Mar  7 11:34 image1.jpg             and other details.
-rw-r--r--   1 jacobson faculty    23162 Mar  7 11:34 image2.jpg
-rw-r--r--   1 jacobson faculty    17907 Mar  7 11:34 image3.jpg
  
bash-2.03$  
bash-2.03$ pwd
 
/export/home/jacobson/images2008                              <------- This shows the present working directory
                                                                             is the images2008 folder.

bash-2.03$ ls -l  ../show*
-rw-r--r--   1 jacobson faculty      778 Mar  7 11:34 ../showImages.html    <----- more details on the showImages.html

                                                                                   web page.