Testing:
Print function works
This commit is contained in:
Jon-William Lewis
2015-03-18 14:53:05 -05:00
parent 45717e33b5
commit a0ad2e7d48
16 changed files with 389 additions and 398 deletions

View File

@@ -1,34 +1,35 @@
S=sns.sh
PROD_STR="Simple Note System"
VER_STR=v2.0a2
VER_STR=v2.0a3
cat > $S << EOF
#!/bin/bash
#==========================================================
# Simple Note System, v2.0a1
# $PROD_STR, $VER_STR
# Copyright 2014, Xenese Labs/Sicron-Perion XNF
#==========================================================
PROD_STR=$PROD_STR
VER_STR=$VER_STR
PROD_STR="$PROD_STR"
VER_STR="$VER_STR"
EOF
cat functions/wconf.sns.sh >> $S
cat functions/help.sns.sh >> $S
echo "# Section: Functions" >> $S
cat ./functions/init_default_config.sns.sh >> $S
cat ./functions/wconf.sns.sh >> $S
cat ./functions/pause.sns.sh >> $S
cat ./functions/help.sns.sh >> $S
cat ./functions/create.sns.sh >> $S
cat ./functions/delete.sns.sh >> $S
cat ./functions/edit.sns.sh >> $S
cat ./functions/print.sns.sh >> $S
cat ./functions/list.sns.sh >> $S
echo "# End Section: Functions" >> $S
cat ./init/stage1.sns.sh >> $S
cat ./init/stage2.sns.sh >> $S
cat ./init/stage3.sns.sh >> $S
cat ./functions/create.sns.sh >> $S
cat ./functions/delete.sns.sh >> $S
cat ./functions/edit.sns.sh >> $S
cat ./functions/print.sns.sh >> $S
cat ./functions/list.sns.sh >> $S
exit