sh
This commit is contained in:
13
projects/06/add/asm.sh
Executable file
13
projects/06/add/asm.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -x
|
||||
inputfile=$1
|
||||
|
||||
while IFS= read -r line
|
||||
do
|
||||
if [ $line != "//*" ]
|
||||
then
|
||||
echo $line
|
||||
fi
|
||||
done < $inputfile
|
||||
|
||||
|
||||
Reference in New Issue
Block a user