This commit is contained in:
Sven Riwoldt
2023-11-19 17:52:30 +01:00
parent 5cf9dad18b
commit e46edef936

13
projects/06/add/asm.sh Executable file
View 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