View Single Post
Posts: 62 | Thanked: 62 times | Joined on Jul 2010 @ New Hampshire, US
#10
Originally Posted by kureyon View Post

Code:
find /home/user/ -name debian*.ext2 | xargs ls -al
I think you need a backslash before the *. Like this:

Code:
find /home/user/ -name debian\*.ext2 | xargs ls -al