#!/bin/sh -e PKG="xkcdha" USER="user" GROUP="users" IMG_DIR="/home/$USER/MyDocs/.images/$PKG" [ "$1" = "configure" -a ! -d $IMG_DIR ] && (mkdir $IMG_DIR && chown -R $USER:$GROUP $IMG_DIR) exit 0