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.
我尝试在我的 kshell 脚本中使用一个变量,但无法获得好的结果。请帮忙。
FileMask='*.ext' echo "FILEMASK: $FileMask" /bin/executable -inputMask $FileMask
echo显示FILEMASK: *.ext
echo
FILEMASK: *.ext
但是在可执行文件中,我不是*.ext作为属性的参数,而是从当前目录-inputMask中获取所有文件的完整列表。.ext
*.ext
-inputMask
.ext
如何使用变量的内容,但不对其进行评估?
BR
引用变量的使用,即:
/bin/executable -inputMask "$FileMask"