View previous topic :: View next topic |
Author |
Message |
abc2000 Beginner
Joined: 22 Mar 2006 Posts: 18 Topics: 9
|
Posted: Tue Jun 27, 2006 1:02 am Post subject: REXX 'say' connot output some characters such as '{' '}' |
|
|
Z/OS REXX 'say' connot output some characters such as '{' '}' , but EXECIO output normally
say "{ $ } [ ] "
: : : : :
How to output these character using 'say' |
|
Back to top |
|
 |
stefan Beginner
Joined: 20 Nov 2003 Posts: 41 Topics: 2 Location: Germany
|
Posted: Tue Jun 27, 2006 1:39 am Post subject: tso help terminal |
|
|
I think this is determined by your terminal characteristics.
Try "tso help terminal" and look for the parameter CHAR. This gives you the possibility to use another character within your rexx program which will then be displayed as '{' for example.
I've tried "tso terminal char((c'{',x'4d'))". Afterwards my rexx program issued "say '(' " which led to "{" beeing displayed.
Issuing "tso terminal nochar" resets the terminal characteristics again.
Hope this helps. |
|
Back to top |
|
 |
|
|