Answers for "bash symlink files matching glob"

1

bash symlink files matching glob

# Basic syntax:
ln -s /source/files/*.bar /destination/directory/
# Where:
#	- -s makes symbolic links instead of hard links
#	- symbolic links to the files ending in .bar in the /source/files/ directory
#		are made in the /destination/directory/
Posted by: Guest on January-17-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language