如何在引号,单引号或反引号中使用通配符或任何其他特殊字符?
和
你是如何做到这一点的,Linux并没有从字面上理解它? 例如
echo "This is my list of file ls -l"
我知道他们是另一种方式,例如
echo "This is my list of file" ; ls -l
但我试图将 ls -l </ strong>保留在回声中。
答案 0 :(得分:0)
您可以使用:
echo "This is my list of file $(ls -l)"
这将在echo语句中打印ls -l的输出。