Questions tagged «heredoc»

2
您如何在Heredoc中转义字符?
我正在使用bash脚本,试图阻止它尝试替换Heredoc中的变量。如何将Heredoc设置为A)逸出变量名称而不是解析它们,或者B)完整返回整个字符串? cat > /etc/nginx/sites-available/default_php <<END server { listen 80 default; server_name _; root /var/www/$host; <--- $host is a problem child } END 照原样,当我完成将其注入文件时,我将得到以下结果: server { listen 80 default; server_name _; root /var/www/; }
22 linux  bash  heredoc 
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.