Skip to content

Commit

Permalink
Create varibles.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
mngugi committed May 16, 2024
1 parent 770364e commit ad7e987
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions varibles.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

string_variable = "Hi i have finished typing a research proposal"

echo $string_variable
echo "$string_variable"
echo '$string_variable'
echo \$string_variable

echo Enter some text
read string_variable

echo '$string_variable' now equals $string_variable

exit

0 comments on commit ad7e987

Please sign in to comment.