View Single Post
Old 04-23-2017, 02:19 AM   #17
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,738
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by BetterRed View Post
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 View Post
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
Doitsu is offline   Reply With Quote