Created
October 28, 2015 22:33
-
-
Save steve-kasica/13f9d895dc04e7345b1f to your computer and use it in GitHub Desktop.
Symlink only PDFs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Create symlink for only PDFs or really any filetype in a directory with find and xargs | |
find /some/directory/ -name \*.pdf -print0 | xargs -0 -I {} ln -s {} . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment