10 lines
194 B
Bash
Executable File
10 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
Y=$(date +'%Y')
|
|
ME="Aaron Bieber <aaron@bolddaemon.com>"
|
|
|
|
tail -n15 /usr/share/misc/license.template | \
|
|
sed -e "s/YYYY/$Y/g" |
|
|
sed -e "s/YOUR NAME HERE <user@your.dom.ain>/$ME/g"
|
|
|