Answers for "bash create symlinks for files matching search pattern"

1

bash create symlinks for files matching search pattern

# 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 "bash create symlinks for files matching search pattern"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language