all the info is assembled into a single file. To achieve this in Bash, you can do the following:
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
cat $(ls) > dictionary.txt |
this will put all files from the current directory into one file.
More complicated manipulations, such as sorting and elimination of duplicates,
described here.
No comments:
Post a Comment