Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'The Unix Way' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
The Unix Way
Authored by: lullabud on Feb 01, '08 08:14:11AM
The OP mentions doing things the xargs shell way but doesn't give an example. For the curious, here is a basic example. In this example we merely issue `ls -la` to see the attributes of the file.
mdfind -0 asdf | xargs -0 ls -la


[ Reply to This | # ]