learn how to write sh correctly

This commit is contained in:
David Schleef 2003-06-04 03:04:42 +00:00
parent 7b9099df6b
commit 463736ca60

View file

@ -1,12 +1,12 @@
#!/bin/sh
if ! -f NEWS ; then
if [ ! -f NEWS ] ; then
touch NEWS
fi
if ! -f AUTHORS ; then
if [ ! -f AUTHORS ] ; then
touch AUTHORS
fi
if ! -f ChangeLog ; then
if [ ! -f ChangeLog ] ; then
touch ChangeLog
fi