Quote:
Originally Posted by BetterRed
Then perhaps you know of a way I can run Spotlight under Windows, it being the only thing I know of that runs on Apple MACs that I seriously wish I had.
|
AFAIK, Spotlight is built into the OS, but if you have Windows 8 or higher you could simply press the Windows key and enter your search term in the start menu. Like Spotlight, Windows will display matching app and file names. However, it won't display matching dictionary entries and website addresses.
Quote:
Originally Posted by KevinH
Code:
cd YOURFOLDER
cat *.txt > ../combined.txt
Will concatenate the files in file name sort order.
|
Obviously this method will also work on Linux machines.
On a Windows machine, the following commands will do the same thing:
Code:
cd YOURFOLDER
copy *.txt combined.txt