Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

cookie cleaner

 [1/1] from: rick_falls::hotmail::com at: 17-Jul-2001 16:31


Hello Rebolers, This is a script I wrote to clean some of the cookies out of my system(WinME).I'm new to Rebol so I'm trying to learn by doing, and I was wondering how you guys would accomplish the same thing. Thanks Rick **************************My Script so far************************* REBOL[ Title: "Cookie Cleaner" Author "Rick Falls" Date: "Jul-2-2001" Name: "Cookies" Version: 1.0.0 File: %cookies.r ] word: "" while [word <> "quit"][ word: ask "Enter search word or quit to exit " files: read %/c/windows/cookies/ foreach file files [if find file word[delete file]] ] *********************************************************************