从 Bash 脚本执行 GREP/CUT 命令时遇到问题

Posted

技术标签:

【中文标题】从 Bash 脚本执行 GREP/CUT 命令时遇到问题【英文标题】:Troubles Executing GREP/CUT Command from Bash Script 【发布时间】:2019-10-30 15:06:14 【问题描述】:

我正在尝试在 Bash 脚本中执行以下命令:

grep 1001 -w /etc/passwd | cut -d ':' -f 1,4,5
grep 1004 -w /etc/passwd | cut -d ':' -f 1,4,5

它在 Linux 的命令行中运行良好,如果我删除管道的后半部分,它也可以从 Bash 中正确执行。

到目前为止,这是我的脚本:

#/bin/bash

#find the group number correlated to reader and user
reader=`grep reader /etc/group | cut -d ":" -f3`
user=`grep user /etc/group | cut -d ":" -f3`

echo reader: $reader #prints 1004
echo user: $user #prints 1001

cmdRead="grep $reader -w /etc/passwd | cut -d \":\" -f 1,4,5"
cmdUser="grep $user -w /etc/passwd | cut -d \":\" -f 1,4,5"

echo executing command: $cmdRead
echo `$cmdRead`
echo executing command: $cmdUser
echo `$cmdUser`

此代码的输出产生:

reader: 1004
user: 1001
executing command: grep 1004 -w /etc/passwd | cut -d ":" -f 1,4,5
grep: invalid argument ‘":"’ for ‘--directories’
Valid arguments are:
  - ‘read’
  - ‘recurse’
  - ‘skip’
Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.

executing command: grep 1001 -w /etc/passwd | cut -d ":" -f 1,4,5
grep: invalid argument ‘":"’ for ‘--directories’
Valid arguments are:
  - ‘read’
  - ‘recurse’
  - ‘skip’
Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.

我昨天才开始学习 Bash,所以我为这个菜鸟式的问题道歉,但非常感谢任何帮助 :)

【问题讨论】:

将您的命令括在$( ... ) 中,而不是引号:cmdRead=$(grep $reader -w /etc/passwd | cut -d: -f 1,4,5) 另外,cut 中 -f 参数的值不需要引用冒号,因此不需要转义引号。请参阅我之前的评论。 非常感谢@AndrewVickers 我可以将您的评论标记为已接受的答案吗? 另见How to use Shellcheck、How to debug a bash script?(U&L.SE)、How to debug a bash script?(SO)、How to debug bash script?(AskU)、Debugging Bash scripts等 @Cyber​​Stems 我在下面添加了一个答案,以便您接受/投票。谢谢! 【参考方案1】:

将您的命令用$( ... ) 括起来,而不是引号。另外,cut 中 -f 参数的值不需要引用冒号,因此不需要转义引号:

cmdRead=$(grep $reader -w /etc/passwd | cut -d: -f 1,4,5)

【讨论】:

以上是关于从 Bash 脚本执行 GREP/CUT 命令时遇到问题的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本 grep cut tee diff

从执行 bash 脚本中清除历史记录中的最后一个 bash 命令

从 bash 脚本中通过 ssh 在远程主机上执行命令

Liunx 中sed、grep、cut、sort、tee、diff 、paste命令

bash:从远程 url 获取文件大小时遇到​​问题 [重复]

如何将执行命令从 bash 脚本转换为 C?或如何在“W”模式下正确使用 popen()?