read
Verified for current stable LTS
Read Command: Assign Multiple Values To Variables
Use for assign multiple values to variables with Read. Exact CLI syntax to assign multiple values to variables using Read.
When to use this: Use for assign multiple values to variables with Read.
Command Syntax
read <<< "<The surname is Bond>" <_ variable1 _ variable2> read <<< "<The surname is Bond>" <_ variable1 _ variable2> Live Command Builder
Final Command
read <<< "<The surname is Bond>" <_ variable1 _ variable2> Command Breakdown
read is the base executable for this command.
FAQ
Purpose: Exact syntax to assign multiple values to variables using Read.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
Read Command: Display Prompt Before Input
read -p "{Enter your input here: }" <variable> Read Command: Do Not Escape Backslashes read -r <variable> Read Command: Read Stdin And Perform Action On Lines cat </dev/stdin|path/to/file|...> | while read line; do <echo|ls|rm|...> "$line"; done Read Command: Silent Mode Input read -s <variable> Read Command: Specify Max Characters To Read read -n <character_count> <variable>