View Single Post
  #2  
Old April 18th, 2007, 11:27 AM
simbalala simbalala is online now
Registered User
 
Join Date: Jul 2005
Posts: 897
Thanks: 0
Thanked 5 Times in 5 Posts
simbalala is on a distinguished road
You need to escape the space

Not: ls -f Macintosh HD

but: ls -f Macintosh\ HD

The backslash tells the system to accept the space as a literal character. Or you can use quotes

ls -f "Macintosh HD"
Reply With Quote