Skip to content

Instantly share code, notes, and snippets.

@dhornbein
dhornbein / place_holder_img.sh
Created October 10, 2012 21:51
Shell script that takes two arguments a size and name to produce a placeholder image
#!/bin/bash
# This script will tcreate a place holder image
if [ -z "$1" ]
then
echo "Please enter the size you wish to make (ex: 120x300) then press [ENTER]"
read size
else