To change your shell, try: "chsh" and give the path to your new shell, like "/usr/local/bin/bash". "finger" your login name to find out about your default shell.
$ mkdir ~/.terminfo/ $ mkdir ~/.terminfo/vSave this file as ~/.terminfo/v/vt102-c. Or copy it from my homedirectory on the alphas: cp ~bernhard/.terminfo/v/vt102-c ~/.terminfo/v/
Then call mutt with the right environment variables set.
In bash you can do it like:
TERM=vt102-c mutt
or create an alias like with that line in your .profile file
(if you are using the bash, otherwise find out, how your shell
does aliases):
alias mutt="TERM=vt102-c mutt"
Your editor called by mutt might still have a problem with the TERM environment variable, because the old programs were complied with an old version of curses, which cannot use the terminfo terminal information. To work around that, you have to save the old TERM variable somewhere and add a line to your mutt configuration file to use that old TERM value for the editor.
(bash alias for mutt:)
alias mutt="TERM_SAVED=$TERM TERM=vt102-c mutt"
and the following line in the ~/.muttrc:
set editor=TERM=$TERM_SAVED $EDITOR
set move=no
Navindra Umanee from the Dept of Computer Science,McGill University explains some that unix Editors.
find ~ -name '*.html' -printto find .html files in your homedirectory and in contrast
find ~ -name '*.html'