9 lines
144 B
Bash
Executable file
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
|