Pario TechnoBlob
About
Posts
Tag: bash
Script to delete files listed in a file
This is a short one liner bash script to delete files in a file. The script also handles filenames with space in them. <br /> $ while read file; do rm "$file";...
Rotate and rename images according to their EXIF info
This is my short script to rotate and rename image files accoring to date captured based on their EXIF info. You need jhead and exiv2 to run this. These two programs are also...
Backup of Zimbra MailBox using zmmailbox
This is a short script I use to backup the Zimbra mailbox content for my users. This has been used on a Zimbra Collaboration Server (ZCS Open Source Edition) 7.2 installation,...
Rename AVCHD files using Exiftools
Simple bash script to rename AVCHD/MTS/MOV files to match their recording date and time. <br /> #!/bin/bash<br /> if [ -z "$1" ]; then<br /> echo...
««
«
1
2
3
…
21
»
»»