标签: linux bash shell command-line xargs
我有一个像这样的脚本。
#!/bin/bash echo -n /tmp/ /other_dir/ | xargs -n 1 -d\ -I % $1
我想实现的可能性是在与$ 1变量关联的命令中使用定界符“%”。 例如
. myscript "ls -la %*.txt"
应仅在每个目录中列出.txt文件。 我也试过不加引号,但不起作用。 我现在收到的消息是/tmp/*.txt和/other_dir/*.txt不存在。