I am creating a new file and trying to print out my current directory within a sentence. I want it to look like "My current directory is /.../.../.../". What can I do to get the output I am looking for? Any help or support is much appreciated.
bash3.2$ sciript test1.script
bash3.2$ cat -n > test1.1
I have tried doing several different things like...
echo "My current directory is" $pwd
echo "My current directory is $pwd"
pwd
...........