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