Files
vns/build.sh
Jon-William Lewis 3cb375f64b 2.0a4 -> 2.0a5
Changed some filenames
Rewrote edit function to be more sane
Separated encryption and decryption functions from edit into libencryption.sh
Fixed a bug where an edit tag would be added regardless of create status
2015-05-07 22:11:13 -05:00

38 lines
1001 B
Bash
Executable File

S=sns.sh
PROD_STR="Simple Note System"
VER_STR=v2.0a4
cat > $S << EOF
#!/bin/bash
#==========================================================
# $PROD_STR, $VER_STR
# Copyright 2014, Xenese Labs/Sicron-Perion XNF
#==========================================================
PROD_STR="$PROD_STR"
VER_STR="$VER_STR"
EOF
echo "# Section: Functions" >> $S
cat ./src/includes/defaults.sh >> $S
cat ./src/includes/w_conf.sns.sh >> $S
cat ./src/includes/pause.sns.sh >> $S
cat ./src/includes/help.sns.sh >> $S
cat ./src/includes/p_header.sh >> $S
cat ./src/includes/libencryption.sh >> $S
cat ./src/includes/create.sns.sh >> $S
cat ./src/includes/delete.sns.sh >> $S
cat ./src/includes/edit.sns.sh >> $S
cat ./src/includes/print.sns.sh >> $S
cat ./src/includes/list.sns.sh >> $S
echo "# End Section: Functions" >> $S
cat ./src/main/stage1.sns.sh >> $S
cat ./src/main/stage2.sns.sh >> $S
cat ./src/main/stage3.sns.sh >> $S
exit