The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #7 (permalink)  
Old 05-23-2002
dbinsol1 dbinsol1 is offline
Registered User
  
 

Join Date: May 2002
Posts: 5
user55@gamera> ps
PID TTY TIME CMD
549 pts/5 0:00 sh
7942 pts/5 0:00 ps
user55@gamera> whence ls
whence: not found
user55@gamera> which ls
/bin/ls
user55@gamera> /usr/bin/ls -l
total 2
total 2
-rw-r--r-- 1 user55 staff 32 May 23 14:42 bko.fnl
user55@gamera> /usr/bin/ls
bko.fnl
user55@gamera> cksum /usr/bin/ls
2980984376 18844 /usr/bin/ls
user55@gamera> uname -a
SunOS gamera 5.8 Generic_111433-02 sun4u sparc SUNW,Ultra-5_10
user55@gamera> /usr/bin/ls -la
total 2
total 2
drwxr-xr-x 2 user55 staff 512 May 23 15:22 .
drwxr-xr-x 7 user55 staff 512 May 22 17:05 ..
-rw-r--r-- 1 user55 staff 32 May 23 14:42 bko.fnl
user55@gamera> more bko.fnl
Test file, contents of bko.fnl.
user55@gamera> more bko.dos
bko.dos: No such file or directory
user55@gamera> cp bko.fnl bko.dos
user55@gamera> /usr/bin/ls -la
total 4
total 4
drwxr-xr-x 2 user55 staff 512 May 23 15:38 .
drwxr-xr-x 7 user55 staff 512 May 22 17:05 ..
-rw-r--r-- 1 user55 staff 32 May 23 14:42 bko.fnl
user55@gamera> more bko.dos
Test file, contents of bko.fnl.
user55@gamera> rm bko.dos
user55@gamera> cp bko.fnl testFileName
user55@gamera> /usr/bin/ls -la
total 4
total 4
drwxr-xr-x 2 user55 staff 512 May 23 15:38 .
drwxr-xr-x 7 user55 staff 512 May 22 17:05 ..
-rw-r--r-- 1 user55 staff 32 May 23 14:42 bko.fnl
-rw-r--r-- 1 user55 staff 32 May 23 15:38 testFileName
user55@gamera> more testFileName
Test file, contents of bko.fnl.
user55@gamera>