Created
September 28, 2020 08:30
-
-
Save neilghosh/4822c0244e6803efed993af7169c5d34 to your computer and use it in GitHub Desktop.
List Files in A directory
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
# list foo the xml file names without the extention | |
find *.xml -printf "%f\n" | sed -e 's/\.xml$//' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment