treadThis feature has been deprecated and thus the following documentation is provided for historical reference rather than recommendations for new code.
While we do make every effort to maintain backwards compatibility, sometimes deprecations need to be made in order to keep Murex focused and maintainable.
Please read our compatibility commitment for more information on how we approach such changes. Visit the deprecated section if you need to view other deprecated features.
reada line of input from the user and store as a user defined typed variable (removed 7.0)
A readline function to allow a line of data inputted from the terminal and then store that as a typed variable.
This builtin is now deprecated. Please use
read --datatype ... instead
tread data-type "prompt" var_name
<stdin> -> tread data-type var_name
tread qs "Please paste a URL: " url
out "The query string values included were:"
$url -> format json
out Please paste a URL: -> tread qs url
out "The query string values included were:"
$url -> format json
If tread is called as a method then the prompt string is
taken from stdin. Otherwise the prompt string will be the first
parameter. However if no prompt string is given then tread
will not write a prompt.
The last parameter will be the variable name to store the string read
by tread. This variable cannot be prefixed by dollar,
$, otherwise the shell will write the output of that
variable as the last parameter rather than the name of the variable.
cast:
Alters the data-type of the previous function without altering its
outputerr: Print a line to the stderrout: Print a string to the stdout with a trailing new
line charactertout: Print a string to the stdout and set it’s
data-typepretty: Prettifies data documents to make it human
readableread: read a line of input from the user
and store as a variableformat: Reformat one data-type into another
data-type%(Brace Quote):
Initiates or terminates a string (variables expanded)This document was generated from builtins/core/io/read_doc.yaml.
This site's content is rebuilt automatically from murex's source code after each merge to the master branch. Downloadable murex binaries are also built with the website.
Last built on Fri Oct 24 08:59:31 UTC 2025 against commit e59ab49e59ab49e1628d8546d2ad8ce5eb1150445f6a940.
Current version is 7.1.4143 (unknown) which has been verified against tests cases.