红联Linux门户
Linux帮助

Bash中单引号和双引号的区别

发布时间:2015-08-01 09:47:38来源:linux网站作者:linux人

单引号:必须成对使用,它可以保护所有的字符不被翻译。如变量$1,和奇数个单引号的作用相同,偶数个单引号=1个双引号


双引号:必须成对出现,它可以保护一些元字符不被翻译,但允许变量和命令替换,和偶数个单引号的作用相同


反斜线\:shell也不解释转义符\后的字符,'$1'和"\$1"一样


单引号和双引号可以互相保护


例子1:

$ cat test.sh

#!/bin/bash

echo "$1"=$1 "$2"=$2
echo '$1'=$1 '$2'=$2

$ ./test.sh hello world
hello=hello world=world
$1=hello $2=world


例子2:

#!/bin/bash

echo '$1'=$1
echo '$1'='$1'
echo '$1'="$1"          //一个双引号
echo '$1'=$1
echo '$1'='$1'
echo '$1'=''$1''         //两个单引号


例子3:

单引号中的反斜线不被翻译
$echo '\\'
\\


例子4:

单引号保护双引号
$echo 'Mother yelled, "Time to eat!" '
Mother yelled, "Time to eat!"
例子5:

双引号保护单引号
$echo "Hi, I'm glad to mee you"
Hi, I'm glad to meet you


Linux shell中反引号(‘)的应用:http://www.linuxdiyf.com/linux/3242.html

Linux下的实用bash命令分享:http://www.linuxdiyf.com/linux/856.html

提高Linux工作效率的十大bash技巧:http://www.linuxdiyf.com/linux/9096.html

Linu Bash入门技巧分享:http://www.linuxdiyf.com/linux/8219.html

Bash中的特殊字符大全:http://www.linuxdiyf.com/linux/12618.html