8 lines
117 B
Plaintext
8 lines
117 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
for i; do
|
||
|
echo -n $i >> compile_log
|
||
|
echo -n " " >> compile_log
|
||
|
done
|
||
|
|
||
|
echo "" >> compile_log
|