February 2003
Intermediate to advanced
1440 pages
30h 42m
English
You may want to perform a find operation to produce a list of files only and not include directories in the operation. The following find is similar to what we performed earlier, but this time it produces a list of files only. This is achieved by specifying that we are looking for type f for files:
# find /home -type f -print /home/httpd/apache/doc/manual.ps.gz /home/httpd/cgi-bin/HelpIndex /home/httpd/cgi-bin/HelpScreen /home/httpd/html/dt/dt.html /home/httpd/html/dt/dt.html.idx /home/httpd/html/dt/dt.index /home/httpd/html/dt/expert.gif /home/httpd/html/dt/hint.gif /home/httpd/html/dt/index.gif /home/httpd/html/dt/info2.gif /home/httpd/html/dt/note.gif /home/httpd/html/dt/sysadm.gif /home/httpd/html/dt/up.gif ...Read now
Unlock full access