home *** CD-ROM | disk | FTP | other *** search
- /* Blocnotes startup arexx script */
-
- address 'blocnotes.rexx'
- OPTIONS RESULTS
-
- address command 'date >t:today'
- call open('date','T:today')
- if rc~=0 then exit
- date=readln('date')
- close('date')
- address command 'delete >nil: t:today QUIET'
-
- parse var date DAY DATE TIME .
-
- Searchtxt='$ONDATE#?'||DATE
-
- search pat Searchtxt
- id=RESULT
- do while (id~=0)
- SHOW id
- SEARCH PAT Searchtxt FROM id
- id=RESULT
- end
-