![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to make VI editor show colors in Unix | whatisthis | Shell Programming and Scripting | 7 | 05-26-2006 10:57 PM |
| what command can show calendar in unix system? | kennethchow | UNIX for Dummies Questions & Answers | 2 | 12-20-2005 01:17 AM |
| Problems with "show device" command | Lestat | HP-UX | 3 | 03-21-2005 07:54 PM |
| ksh: how to make [up arrow] recall command history | BG_JrAdmin | UNIX for Dummies Questions & Answers | 3 | 03-15-2005 06:32 AM |
| How would I make a find command NOT show the path of a file? | LordJezo | Shell Programming and Scripting | 1 | 10-01-2004 03:01 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Is there any way to make up arrow show last command in CSh?
Hi, I've been looking for a way to make the up arrow show the last command in csh, like how it does in bash/ksh. I've been googling and just can't find anything.....anybody have any ideas? thanks!
|
| Forum Sponsor | ||
|
|
|
|||
|
OK, I've changed my default login shell to tcsh, but it seems that the bindkey builtin is not installed. "bindkey" and "man bindkey" both do nothing, although the same excerpt in your post is also in my tcsh manpage. Strange....Is bindkey a redhat-only feature or something? Also, when I enter "$VERSION" to check the shell version, it says it's an undefined variable. So at this point I don't even know what tcsh version I have. Any ideas?
|
|
||||
|
Hi.
Here's how I usually find the tcsh version; this is from Solaris 10: Code:
$ tcsh -c 'echo "tcsh $tcsh"' tcsh 6.12.00 Code:
tcsh --version These also work on FreeBSD and GNU/Linux. Were you in tcsh when you tried bindkey? ... cheers, drl |