diff --git a/bin/license b/bin/license new file mode 100755 index 0000000..4ed3216 --- /dev/null +++ b/bin/license @@ -0,0 +1,9 @@ +#!/bin/sh + +Y=$(date +'%Y') +ME="Aaron Bieber " + +tail -n15 /usr/share/misc/license.template | \ + sed -e "s/YYYY/$Y/g" | + sed -e "s/YOUR NAME HERE /$ME/g" +