これを実行したいbashスクリプトがあります
(in pseudo)
for each item in excludelist
append to string: | grep -v $item
for each file in directory
do
stuff
done
そしていま
(in real code, the creation and concatenation of f works, the problem is not here I believe)
for i in $EXCLUDE
do
echo $i
f="$f | grep -v $i"
done
for d in `ls $AWSTATSCONF/awstats*conf $f`
do
echo $d
done
出力
ls: |: No such file or directory
ls: grep: No such file or directory
これを機能させるために本当に感謝しています。
ご挨拶、
影