Skip to main content

Read With Type: tread

Laurence MorganAbout 1 minDeprecated FeaturesBuiltins

Read With Type: tread

This 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 commitmentopen in new window for more information on Murex's compatibility commitment, and visit the deprecated sectionopen in new window if you need to research other deprecated features.

read a line of input from the user and store as a user defined typed variable (removed 7.0)

Description

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

Usage

tread data-type "prompt" var_name

<stdin> -> tread data-type var_name

Examples

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

Detail

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.

See Also


This document was generated from builtins/core/io/read_doc.yamlopen in new window.

Last update:
Contributors: Laurence Morgan