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

10 lines
144 B
Bash
Raw Normal View History

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