diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-05-23 22:24:47 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-05-23 22:24:47 +0000 |
commit | 0749196612c0442c6ea42fec33c1e464ecf86dee (patch) | |
tree | 1d92a12a1bdef177b46e9b83cfdbcc8bdb4eceb1 /testing/scripts/function.sh | |
parent | c502b1b4c6852e2e46ec861313d4c611c93b6974 (diff) | |
download | strongswan-0749196612c0442c6ea42fec33c1e464ecf86dee.tar.bz2 strongswan-0749196612c0442c6ea42fec33c1e464ecf86dee.tar.xz |
cecho changes in UML scripts
Diffstat (limited to 'testing/scripts/function.sh')
-rwxr-xr-x | testing/scripts/function.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/scripts/function.sh b/testing/scripts/function.sh index 22a79698d..aa944924c 100755 --- a/testing/scripts/function.sh +++ b/testing/scripts/function.sh @@ -22,11 +22,11 @@ # function cecho { - echo -e "\033\13301;31m$1\033\1330m" + echo -e "\033[1;31m$1\033[0m" } function cecho-n { - echo -en "\033\13301;31m$1\033\1330m" + echo -en "\033[1;31m$1\033[0m" } |