The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 04-21-2007
blowtorch's Avatar
blowtorch blowtorch is offline
Supporter
 
Join Date: Dec 2004
Location: Singapore
Posts: 2,325
In (1), you specify that the find command is to search in the pwd. In (2) and (3), the find command is supposed to search in the /white directory which does not exist. In fact, it clearly says that in the output doesn't it.

To make (3) work, run the command as:
Code:
guests-Computer:/volumes guest$ pwd
/volumes
guests-Computer:/volumes guest$ find white -type d
Assuming that 'white' is a directory inside /volumes, the command will work.
Reply With Quote