SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : TA-Quotes Plus -- Ignore unavailable to you. Want to Upgrade?


To: Nine_USA who wrote (2650)12/8/1997 12:22:00 AM
From: Sean W. Smith  Respond to of 11149
 
Herb,

All this is already possible with R1 using a couple of very
simple unix like tools called cat, sort, and uniq.

cat is short for concatenate and can be thought of as a souped of version of the dos type command.

sort- is a standard dos and unix command which can be used to sort
text files.

uniq - will eliminate duplicate entries from a sorted list.

you can use dosbatch or winbath to automate these procedures easily.

for example.

@echo off
cat mywatch.lst todaysscan.lst | sort | uniq > newwatch.lst
rename newwatch.lst mywatch.lst

or

@echo off
cat scan1.lst scan2.lst scan3.lst scan4.lst | sort | uniq >newscan.lst

If you want the 2 utils send me email.

Sean