We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Linux Shell
- Bash
- A Personalized Echo
- Discussions
A Personalized Echo
A Personalized Echo
Sort by
recency
|
145 Discussions
|
Please Login in order to post a comment
read name echo Welcome $name
read name printf "Hello %s\n" "$name"
read name echo "Welcome $name"
sed -e 's/^/Welcome /;q' -