Security

File integrity

A script using bash and md5sum to keep track of file integrity. # Change the separator to allow for filenames containing spaces # (the default is ” \t\n”, which confuses the for loop) IFS=$’\n’ FOLDERS=`find /Volumes/disk\ 1/Pictures/Photos -type d | sed ‘s/ /\\ /g’` for FOLDER in $FOLDERS; do # mind you, this will only […]

Read More
Linux

Script to download pictures from camera and rename them etc

1. download photos from camera and sort them by date of day in folders 2. remove possible duplicates if I did not erase camera images since last download 3. convert RAW/NEF images to a usable format All this in one single click! #!/bin/bash # Change this to where to store Photos target=/home/multimedia/Images camera=”USB PTP Class […]

Read More