Added build script. Moved libraries from src to lib

This commit is contained in:
ayakael 2018-01-11 14:35:10 -09:00
parent 351516d54c
commit 93948910e3
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026
6 changed files with 13 additions and 0 deletions

9
build.sh Normal file
View file

@ -0,0 +1,9 @@
#!/bin/bash
EXEC=bunc
echo -e "#!/bin/bash\n" > ${EXEC}
for file in $(find src/ -type f); do
awk '!/^ *#/ && NF' ${file} >> ${EXEC}
done

4
test/bui Normal file
View file

@ -0,0 +1,4 @@
echorm ${EXEC}
-e "#!/bin/bash\n" > ${EXEC}
1Oautomatically escape when changing lines vim
2