Help for this page

Select Code to Download


  1. or download this
    "expect -f '$theScript' '$cd' pwd 'find . -name  '*.std*' -s 
               (^^^^^^^^^^) (^^^)     (^^^^^^^^^^^^^^)      (^^^
    
  2. or download this
    0: expect
    1: -f
    ...
    4: pwd
    5: find . -name  *.std* -o -name ULOG.* -mtime +9 -type f -exec rm {} 
    +\;
    6: pwd
    
  3. or download this
        system( 'expect', '-f', $theScript, $cd, 'pwd',
            "find . -name  '*.std*' -o -name 'ULOG.*' -mtime +9 -type f -e
    +xec rm {} ';'",
            "pwd",
        );