LoginSignup
2
2

More than 5 years have passed since last update.

Linuxでディレクトリ配下のplファイルをすべてsyntaxチェックする

Posted at

Linuxでディレクトリ配下のtgzファイルをすべて解凍する - Qiita
http://qiita.com/oyaguma/items/1e62f757153d3ef39164
より。

ck.sh
for file in $(ls -1 | grep pl$ )
do
  perl -c $file
done
$ sh ck.sh
a.pl syntax OK
b.pl syntax OK
c.pl syntax OK
d.pl syntax OK
e.pl syntax OK
f.pl syntax OK
g.pl syntax OK
h.pl syntax OK
i.pl syntax OK
j.pl syntax OK
k.pl syntax OK
l.pl syntax OK
m.pl syntax OK
n.pl syntax OK
o.pl syntax OK
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2