Still heavily broken; moving computers again

This commit is contained in:
Jon-William Lewis
2016-08-27 15:08:15 -05:00
parent 704980fa2b
commit 4966351673
6 changed files with 634 additions and 37 deletions

24
build.sh Normal file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
# Simple Note System - Install Script
S=sns.sh
bash header.sh > "$S"
echo -e "\n# Section: Functions" >> "$S"
cat ./src/includes/init_store.sns.sh >> "$S"
cat ./src/includes/verify_store.sns.sh >> "$S"
cat ./src/includes/help.sns.sh >> "$S"
cat ./src/includes/p_header.sh >> "$S"
cat ./src/includes/libencryption.sns.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"
printf "%s\n" "# 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"
chmod u+x "$S"
exit