9
votes
4answers
912 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 …
1
vote
Korn Shell code to send attachments with mailx and uuencode?
You have to concat both the text of your message and the uuencoded attachment:
$ subject="Something happened"
$ to="somebody@somewhere.com"
$ body="Attachment Test"
$ attachment=/pa …
