#! /bin/csh -f
# Last edited on 2001-09-05 13:25:29 by stolfi

set usage = "$0 NN"

# saves Netscape's history.* files as history-NN.*

if ( $#argv != 1 ) then
  echo "usage: ${usage}"; exit 1
endif

set nn = "$1"; shift

cd ~/.netscape

mv -i history.dat  history-${nn}.dat
mv -i history.list history-${nn}.list

touch history.dat history.list
