Created
August 24, 2017 09:33
-
-
Save mustafaturan/cbda509d235a2d7bb4e3e946b10f7b59 to your computer and use it in GitHub Desktop.
Copy all .example files in a folder with removal of .example extension.
This file contains hidden or 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
for f in *.example; do | |
cp -- "$f" "${f%.example}" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment