TIL: use realpath to print the absolute path of a file. Useful for creating symlinks.
for f in $(realpath scripts/linux/*); do ln -s "$f" ~/bin/$(basename "$f"); done
TIL: use realpath to print the absolute path of a file. Useful for creating symlinks.
for f in $(realpath scripts/linux/*); do ln -s "$f" ~/bin/$(basename "$f"); done