fritz digital developer and producer, london +44 (0)7817 719 566
Tag: Find
Posts
Finding files inside an archive with Terminal
Lots of searching with this current project… this time looking for files inside an archive, without having to extract them first. Using Apple’s Terminal, or any Unix / Linux bash shell: [script lang="bash"]find /dir/ -iname archive.tar -print0 | xargs -0 tar t -f | grep “filename you are searching for”
find /dir/ -iname archive.zip -print0 | xargs -0 unzip -l | grep “filename you are searching for”
find /dir/ -iname archive.rar -print0 | xargs -0 unrar l | grep “filename you are searching for”
[/script]
More»

Updates
subscribe to this blog's rss feed'
follow me on twitter
subscribe friendfeed
my delicious bookmarks
my youtube channel