#!/bin/sh dest="$HOME/Screenshots" # Check to make sure destination directory exists if [ -d "$dest" ]; then mkdir -p "$dest" fi scrot "%Y%m%d_$wx$h.png" $@ -e "mv $f $dest"