#!/bin/bash export LC_ALL=C echo "Copying pictures from CF" if [ `ls /mnt/cf | wc -l` -eq 0 ]; then mount /mnt/cf cp -a /mnt/cf/DCIM/*[A-Z][A-Z] . umount /mnt/cf else cp -a /mnt/cf/DCIM/*[A-Z][A-Z] . fi getpix local