Questions tagged «escape-characters»

2
如何将此行输出到远程文件?
我正在使用bash shell并试图找出编写以下内容的正确方法: ssh mysuer@remotehost 'echo "update user set url = \'localhost\' where url = \'mydomain.com\';" >> /tmp/db.sql' 到目前为止,以上操作均无效。 按下回车键后,下面的一行是a >,好像我希望在某处关闭一个开放的报价。我需要怎么做才能做到这一点 update user set url = 'localhost' where url = 'mydomain.com'; 输出到远程文件?


1
sed中单引号的反斜杠转义会产生错误
目的是在之后插入 HEAD 旧版HTML网站中的Google代码。 #!/bin/bash find . -type f -iname "*.php" -or -iname "*.htm" -or -iname "*.html" | while read i; do echo "Processing: $i" sed -i 's*<HEAD>*&\ <!-- Global site tag (gtag.js) - Google Analytics -->\ <script async src="https://www.googletagmanager.com/gtag/js?id=UA-1234567-2"></script>\ <script>\ window.dataLayer = window.dataLayer || [];\ function gtag(){dataLayer.push(arguments);}\ gtag('js', new Date());\ …

2
如何在编辑模式下在汇编等浏览器编辑器中找到像`\\ company \ path`这样的文件路径
在汇合中编辑页面时CTRL- f带您进入查找和替换对话框,而不是浏览器的查找字段。在此对话框的查找框中填写文件路径时,您找不到该文件路径。 我认为这是因为反斜杠是一个转义字符,所以我尝试将反斜杠加倍,但这不起作用。用典型的野生chard字符取代它们*,.或者?也不起作用。 有人有溶解吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.