gpt4 book ai didi

linux - 尝试在 bash 脚本的 if 语句中使用 Grep -E 的输出

转载 作者:太空宇宙 更新时间:2023-11-04 12:18:27 26 4
gpt4 key购买 nike

我正在尝试使用 $mount 的输出来检查是否有网络挂载点,如果有,请按照说明进行操作。相反,无论我尝试什么,我都会不断收到 else 语句。

如果我运行 mount | egrep 'cifs|nfs|rpc' 在命令行上,我看到有网络挂载。我如何在脚本中执行此操作?经过多次试验和错误后,我无法弄清楚,想拔掉我的头发。

Red Hat 6.8 是我的操作系统,但需要它才能在 6.x 和 7.x 上工作

在命令行运行时的示例输出:

~# mount | egrep 'cifs|nfs|rpc' 

sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
machine.example.com:/export/home/x/ICD103 on
/mnt/ICD103 type nfs(rw,soft,int,rsize=8192,wsize=8192,sloppy,vers=4,addr=xx.xxx.xxx.xx,clientaddr=10.xxx.xxx.xxx)
//new-devstore/Stable/Assets on /mnt/assets type cifs (rw)
mount=$(mount | egrep 'cifs|nfs|rpc')

if $mount; then
mount > $destBAK/mount.txt;
cp -p /etc/auto.cifs > $destBAK 2>/dev/null;
cp -p /etc/auto.master > $destBAK 2>/dev/null;
cp -p /root/.smbauth > $destBAK 2>/dev/null;
cp -p /etc/fstab > $destBAK 2>/dev/null;
else
echo "No Network Mount"
fi

运行./backup.sh后的输出

~# ./backup.sh
Making backup directory /tmp/BAK_2017-10-13 now
Copying files to /tmp/BAK_2017-10-13
./backup.sh: line 34: sunrpc: command not found
No Network Mount

最佳答案

if $mount

将尝试执行 $mount 的值。基本上就像在说

if "foo"; then echo ok; else echo no; fi

除非你的字符串有一个成功执行的值,否则它总是会抛出一个错误并给你else

为什么要分配给 var?

if mount | egrep 'cifs|nfs|rpc'
then ...

将使用 egrep 的返回值。

如果您确实需要集中捕获和保存输出,那么使用

if [[ -n "$mount" ]] # tests string for nonzero length
then ...

如果您需要单独的输出行,请尝试

hit=0
mount | egrep 'cifs|nfs|rpc' |
while read mnt
do hit=1
# ... all your mount code above
done
if (( hit )) # math evaluation
then : any remaining stuff you might need to do
else echo "No Network Mount"
fi

update --

尝试重新设计您想要的东西:

tmp=/tmp/mount.txt
mount > $tmp
if egrep -q 'cifs|nfs|rpc' $tmp
then mv $tmp $destBAK
cp -p /etc/auto.cifs $destBAK
cp -p /etc/auto.master $destBAK
cp -p /root/.smbauth $destBAK
cp -p /etc/fstab $destBAK
else
echo "No Network Mount"
rm $tmp
fi

这应该有效。我取消了所有 stderr 重定向,因为您应该了解错误,并理想地处理它们,但至少在这里它会报告它们。

这对你不起作用?

关于linux - 尝试在 bash 脚本的 if 语句中使用 Grep -E 的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46735008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com