我正在制作一个简单的 shell 脚本,它将最大限度地减少我在搜索父目录下的所有目录和 grep 某些文件中的某些内容所花费的时间。这是我的脚本。
#!/bin/sh
MainDir=/var/opt/database/1227-1239/
cd "$MainDir"
for dir in $(ls); do
grep -i "STAGE,te_start_seq Starting" "$dir"/his_file | tail -1 >> /home/xtee/sst-logs.out
if [ -f "$dir"/sysconfig.out];
then
grep -A 1 "Drive Model" "$dir"/sysconfig.out | tail -1 >> /home/xtee/sst-logs.out
else
grep -m 1 "Physical memory size" "$dir"/node0/setupsys.out | tail -1 >> /home/xtee/sst-logs.out
fi
done
STAGE,te_start_seq Starting
该脚本应该对文件下的字符串进行 grep,his_file
然后将其转储sst-logs.out
。我的问题是if
声明中的部分。该脚本应检查当前目录sysconfig.out
,grepdrive model
并将其转储到(sst-logs.out
如果存在),否则,将目录更改为node0
然后 grep physical memory size
fromsetupsys.out
并将其转储到sst-logs.out
. 我的问题是,该if then else
语句似乎不起作用,因为它根本不转储任何数据,但如果我手动执行 grep,我确实有数据。
我的 shell 脚本有什么问题?有没有更有效的方法来做到这一点?