Answers for "shell script variable"

6

sh declare variable

#!/bin/sh
MY_MESSAGE="Hello World"
echo $MY_MESSAGE
Posted by: Guest on July-03-2020
10

shell script variable

TEXT="Hello World!"
echo $TEXT
# ouput: Hello World!
Posted by: Guest on March-27-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language