开发者

Bash:Single Quotes and Double Quotes and Exclamation Mark

I have a simple script named example:

#!/bin/sh
echo $'${1}'

Please note that the usage of $'' here is to convert \n into new line. ${1} is the first parameter passed to this shell script.

I want to pass a parameter to this script example and it prints the following:

#1. You're smart!
#2. It's a difficult question!

I tried the following:

example "#1. You're smart!\n#2. It's a difficult question!"

An error: -bash: !\n#2.: event not 开发者_如何学Cfound

Then I tried to escape ! by single quote, and tried:

example '#1. You're smart\!\n#2. It's a difficult question\!'

It outputs:

${1}

Any solution here? Thanks a lot!


$ cat t.sh
#! /bin/bash
echo -e $@

Or echo -e $1, or echo -e ${1} if you just want to process the first argument.

To get bash to stop trying to expand !, use set +H (see In bash, how do I escape an exclamation mark?)

$ set +H
$ ./t.sh "#1. You're smart!\n#2. It's a difficult question!"
#1. You're smart!
#2. It's a difficult question!


What's inside a $'' expression has to be a literal. You can't expand other variables inside it.

But you can do this:

echo "${1//\\n/$'\n'}"

Jan Hudec has an even better answer:

echo -e "$1"
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜