我想在 * * 之间的 shell 脚本中使用参数
它不起作用。
我怎样才能做到?
搜索.sh
#!/bin/sh
echo $1
find /data/ -iname '*${1}*'
单引号阻止 $-expressions 被评估/扩展。您需要改用双引号。