Created
December 28, 2017 08:17
-
-
Save harryhow/3959a1d34b73527aed14927c517bf6d9 to your computer and use it in GitHub Desktop.
List files without extension and output as a text file
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
| ls -a | cut -d "." -f 1 > myTextFile.txt | |
| ref: https://stackoverflow.com/a/37478734 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment