Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从数据库中查找文件。我从 php 文件中获取数据就好了。这只是我遇到问题的一行:
directory=`find ./ -type f -name "*$thismodelnormal*" -exec ls -la {} \;`
$thismodelnormal只是一个字符串,但它是基于数据库数据的动态的。谁能启发我如何完成这项工作?我已经做了很多研究,但找不到解决方案……当然,以前有人做过。
$thismodelnormal
在我的脚本顶部添加set -x允许我查看实际正在运行的命令。在这种情况下,我的命令需要是
set -x
directory=`find ./ -type f -name "*"$thismodelnormal"*" -exec ls -la {} \;`
注意两组双引号。一个用于查找本身,另一个用于提取变量。