此问题在此处已有答案:
How to escape history expansion exclamation mark ! inside a double quoted string?(5个答案)
How do I get the exclamation mark to be treated as a literal in double quotes in bash? [duplicate](1个答案)
Difference between single and double quotes in Bash(7个答案)
7天前关闭
我有一个类似shell的(一个简短的例子,只是为了使它简单)
#!/bin/sh
cat $1
字符串
我想通过执行以下操作保存为文件
echo -e "#!/bin/sh" > test.sh
echo -e "cat $1" >> test.sh
型
包含“#!/bin/sh”试图解释这行代码而不是将其写入文件,并通过获取旧命令并将其打印到标准输出来执行一些奇怪的操作
有可能实现一些东西吗?
PS:我尝试了像“v=(cat <<<some_file>); echo $v > test.sh“这样的东西,它可以工作,但我仍然无法<some_file>使用字符串替换。
1条答案
按热度按时间1u4esq0p1#
您可以使用反斜杠转义感叹号,就像这样:
字符串