May 2017
Beginner
552 pages
28h 47m
English
You can use various options of the read command to obtain different results, as shown in the following steps:
read -n number_of_chars variable_name
Consider this example:
$ read -n 2 var
$ echo $var
read -s var
read -p "Enter input:" var
read -t timeout var
Consider the following example:
$ read -t 2 var
# Read the string that is typed within 2 seconds into
variable var.
read -d delim_char var
Consider this example:
$ read ...