This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
-
M
MrMjao
Post
by MrMjao »
I'm executing a script from tcl and want to have som parts of the result bold:
set miff [exec /home/MrMjao/test.sh]
# miff gets the value "bla 02bla02 bla"
puthelp "PRIVMSG $chan :$miff"
but it doesn't turn up bold =/
what should i put in my bashscript to get some parts bold?
-
DrTongue
- Op
- Posts: 115
- Joined: Sat Jan 26, 2002 8:00 pm
- Location: Orlando, Florida
-
Contact:
Post
by DrTongue »
I BELIEVE it would be:
# miff gets the value "02TEXT-BOLD02"
give that a try.
<font size=-1>[ This Message was edited by: DrTongue on 2002-06-13 08:22 ]</font>
-
M
MrMjao
Post
by MrMjao »
I solved it by using echo -e in the bashscript...thanks anyways