bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

set -x makes "r=1 echo" and "r=1; echo" look the same


From: Dan Jacobson
Subject: set -x makes "r=1 echo" and "r=1; echo" look the same
Date: Wed, 09 Nov 2005 01:45:10 +0800

Hurmf, I don't like how the former looks like it was two separate
commands according to set -x:
$ set -x
$ r=1 echo
+ r=1
+ echo

$ r=1; echo
+ r=1
+ echo

They shouldn't give exactly the same, no?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]