add: proc|sys fs format_checker (tool)

This commit is contained in:
Ken Sato
2017-11-22 09:39:48 +09:00
parent 66f44e77af
commit 4e7069d499
38 changed files with 387 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/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