initial commit

This commit is contained in:
Ray Elliott 2020-04-21 16:50:59 +01:00
commit 0eec9e1064
29 changed files with 265 additions and 0 deletions

14
newsh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/sh
set -e
if [ -f "$1" ] ; then
echo "Error: file exists: $1"
exit 1
fi
echo "#!/bin/sh" > "$1"
echo "" >> "$1"
echo "$2" >> "$1"
chmod +x "$1"