Search Results

9
votes
4answers
949 views

How to add file extensions based on file type on Linux/Unix?

This is a question regarding Unix shell scripting (any shell), but any other "standard" scripting language solution would also be appreciated: I have a directory full of files where the fil …
2
votes

How do I use a pipe in the exec parameter for a find command?

A slightly different approach would be to use xargs: find /path/to/jpgs -type f -print0 | xargs -0 jhead -v | grep 123 which I always found a bit easier to underst …