Skip to content

Instantly share code, notes, and snippets.

@zhujack
Created April 18, 2016 15:43
Show Gist options
  • Save zhujack/39a2547cd027b0b84a9d1e67e6d21b0a to your computer and use it in GitHub Desktop.
Save zhujack/39a2547cd027b0b84a9d1e67e6d21b0a to your computer and use it in GitHub Desktop.
Convert symlink to regular file
## Use find
#
for f in $(find . -maxdepth 1 -type l);do cp --remove-destination $(readlink $f) $f;done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment