This command succeeds
$ PS1='$(date +%s) $ '
1391380852 $
However if I add a newline it fails
$ PS1='$(date +%s)
$ '
bash: command substitution: line 1: syntax error near unexpected token `)'
bash: command substitution: line 1: `date +%s)'
If I use backticks it works
$ PS1='`date +%s`
$ '
1391381008
$
but backticks are discouraged. So what is causing this error?
GNU bash, version 4.2.45(6)-release
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…