Files
mckernel/test/proc_sys_checker/file_format_check.sh
2017-11-22 09:39:48 +09:00

15 lines
206 B
Bash
Executable File

#!/bin/sh
#file_format_check.sh
filename="./input"
if [ "x$1" != "x" ]; then
filename=$1
fi
cat /dev/null > outfile
cat ${filename} | while read line
do
./file_format_check.pl $line >> outfile
done