home *** CD-ROM | disk | FTP | other *** search
- #!c:sksh
-
- #*************************************************************************
- # Small function to delete all history files
- #*************************************************************************
-
- local _hfile
-
- if [ "$1" = '-?' -o "$#" -ne 0 ]
- then
- echo 'Usage:' $(basename $0)
- echo ' (deletes all saved history files)'
- return 1
- fi
-
- rm -f s:SKsh_Hist.* >nil:
-