This repository has been archived on 2024-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
bunc/build.sh
2018-01-13 15:16:14 -09:00

9 lines
144 B
Bash
Executable file

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