diff --git a/projects/06/add/asm.sh b/projects/06/add/asm.sh new file mode 100755 index 0000000..e1d6f5c --- /dev/null +++ b/projects/06/add/asm.sh @@ -0,0 +1,13 @@ +#!/bin/bash +set -x +inputfile=$1 + +while IFS= read -r line + do + if [ $line != "//*" ] + then + echo $line + fi + done < $inputfile + +