gpt4 book ai didi

linux - 从 Bash 脚本执行 GREP/CUT 命令时出现问题

转载 作者:太空宇宙 更新时间:2023-11-04 11:43:15 24 4
gpt4 key购买 nike

我正在尝试在 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,所以对于菜鸟式的问题我深表歉意,但非常感谢任何帮助 :)

最佳答案

将命令括在 $( ... ) 中,而不是引号。此外,无需将冒号作为 cut 中 -f 参数的值,因此无需转义引号:

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

关于linux - 从 Bash 脚本执行 GREP/CUT 命令时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58628362/

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