14 lines
187 B
Bash
Executable File
14 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
inputfile=$1
|
|
|
|
while IFS= read -r line
|
|
do
|
|
if [ $line != "//*" ]
|
|
then
|
|
echo $line
|
|
fi
|
|
done < $inputfile
|
|
|
|
|