deleted copy
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
This commit is contained in:
parent
19e00978f9
commit
07a0bda39b
1 changed files with 0 additions and 44 deletions
|
@ -1,44 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Nico Schottelius <nico@schottelius.(net|org)>
|
||||
# Date: Wed Apr 30 14:57:23 CEST 2003
|
||||
# Last Modified:
|
||||
#
|
||||
# nico@flapp:~/bin $ cat ~/.script-template
|
||||
# author="Nico Schottelius"
|
||||
# email="nico@schottelius.(net|org)"
|
||||
#
|
||||
|
||||
|
||||
TEMPLATE=~/.script-template
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
echo "`basename $0`: new script file(s)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
_i=1
|
||||
while [ "$_i" -le "$#" ]; do
|
||||
eval _file=\$$_i
|
||||
echo $_file
|
||||
if [ -e "$_file" ]; then
|
||||
echo "$_file exists. Will not overwrite it. Or will I ?"
|
||||
else
|
||||
if [ ! -e "$TEMPLATE" ]; then
|
||||
echo "Required Template missing. Aborting."
|
||||
exit 1
|
||||
else
|
||||
. $TEMPLATE
|
||||
cat << EOF > "$_file"
|
||||
#!/bin/sh
|
||||
#
|
||||
# $author <$email>
|
||||
# Date: `date +%d-%h-%Y`
|
||||
# Last Modified: -
|
||||
#
|
||||
EOF
|
||||
fi
|
||||
fi
|
||||
_i=$[$_i+1]
|
||||
done
|
Loading…
Reference in a new issue