Answers for "shell save variable"

0

shell save variable

$ b=$(pwd)
$ echo $b
/home/user1

or

$ a=`pwd`
$ echo $a
/home/user1
Posted by: Guest on May-19-2021

Code answers related to "shell save variable"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language