Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

4 votes
1 answer
939 views

readlink literal vs variable

Using BASH: the answer is probably obvious but, not for me. > echo $PWD /root/fcm > readlink -f ~ /root > # but then with a variable or literal > a='~' > readlink -f $a /root/fcm/~ >...
fcm's user avatar
  • 447