Files
photoassistant/utils/pa_rotate

10 lines
151 B
Bash
Executable File

#!/bin/sh
echo "start"
b=`basename $1`
echo "b=$b"
mv $1 /tmp/$b
echo "mv $1 to /tmp/$b"
jpegtran -outfile $1 -rotate $2 /tmp/$b
echo "done jpegtran"