read (Unix)
read is a command found on Unix and Unix-like operating systems such as Linux. It reads a line of input from standard input or a file passed as an argument to its -u flag, and assigns it to a variable. It is built into shells such as Bash.[1]
| Operating system | Unix, Unix-like, Inferno |
|---|---|
| Type | Command |
Usage
The read command is used to take input from the user in shell scripts. It has a built in $REPLY variable for storing replies, but can save to other variables.[2]
Configuration
The command supports several options via flags. It can be configured to issue a message using -p instead of needing to use the echo command. It can also superficially hide text using the -s flag, limit the amount of characters with -n, store the result in an array with -a, and timeout after a certain amount of time with -t.[2]
References
- "Guide to the Linux read Command". Baeldung. 2023-06-08. Retrieved 2024-02-16.
- Murray, Christopher (2019-10-19). "Linux Read Command: 6 Practical Examples". linuxhandbook.com. Retrieved 2024-02-17.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.