Command for maintaining the list of commands used


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Command for maintaining the list of commands used
# 1  
Old 04-15-2008
Question Command for maintaining the list of commands used

Hi,

There is a command by which you can maintain a list of commands previously typed.
By this you dont have to type in the same command again and can use the up-down arrows to scroll through the list. Which is this command, i am not able to recall.
# 2  
Old 04-15-2008
seems like you are referring to history
# 3  
Old 04-15-2008
This depends highly on which shell you use - bash, sh or ksh?
If you don't know try
Code:
echo $SHELL

and report the resul to us.
# 4  
Old 04-15-2008
the shell is ksh
# 5  
Old 04-15-2008
Did you try history?
# 6  
Old 04-16-2008
could do this in the .cshrc if you wanted to use that shell.
Code:
#aliases for all shells
alias a alias
a e exit
a u unalias

Code:
#settings for interactive shells
set history = 500

Code:
# aliases for interactive shells
a h 'history | tail -25'

if you are root create this in the / as .cshrc if not create it in the home directory of your user.
this will allow you to type the letter h then press enter and see the last 25 commands that you typed.

Last edited by deaconf19; 04-16-2008 at 04:23 AM..
# 7  
Old 04-16-2008
I think you guys didnt get my question.
I dont need to list all the commands that i last used.
What i want is that, when i use the up/down keys on the key pad,i must get the last few commands that i executed.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Maintaining SA logs /var/adm/sa/

Hi all, I have enable sar and the sa cron jobs in the sys account. I would like to however, keep only 1 month of data. Can i check for Solaris10, does sa2 do automatic purging of logs in /var/adm/sa/ that are 1 week old ? -- Answer = yes ( in "/usr/lib/sa/sa2" if you open the script,... (2 Replies)
Discussion started by: javanoob
2 Replies

2. Shell Programming and Scripting

Maintaining file structure

Hi guys, I am trying to store some output in a file and then compare it to another file. I am gathering information from 2 commands: cat /opt/jbin/server.log.tmp > A grep "ephemeral" /opt/jbin/log/server.log.2015-05-02-18 > B The contents of both file are the same. This means if I do a... (3 Replies)
Discussion started by: Junaid Subhani
3 Replies

3. UNIX for Dummies Questions & Answers

Want to get list of Linux commands used on specific date through HISTORY command

I want to get list of linux commands used on Jan 01 2014 with the help of HISTORY command or some other linux commands,. Kindly help. (3 Replies)
Discussion started by: karthick nath
3 Replies

4. Shell Programming and Scripting

Maintaining file currency

I have a common data folder with files like x* which is accessed by 3 unix servers. Now each server will try to pick one file form this folder and move it to its local folder. How to maintain file concurrency in this case?I dont want the same file to be accessed by more than one process. (2 Replies)
Discussion started by: prasperl
2 Replies

5. Shell Programming and Scripting

Maintaining Command Line Integrity

Hi everyone, I have a script that takes command line entries, for example # script.sh 1 "2" 3 4 "5" I want to be able to maintain the integrity of this command line such that it is processed with the double quotes i.e.: VAR1=1 VAR2="2" VAR3=3 VAR4=4 VAR5="5" The double-quotes... (2 Replies)
Discussion started by: procux
2 Replies

6. UNIX for Dummies Questions & Answers

Maintaining HOURLY backups

I have a system where i take hourly back-ups of the system.The script for maintaining full backup for the last 5 days is find /backup/server -type f -mtime +4 -exec rm -f {} \; works fine for keeping the files of some 5 days old. In the case of hourly backups.How do we write to keep... (2 Replies)
Discussion started by: ravi55055
2 Replies

7. UNIX for Advanced & Expert Users

Maintaining different version Control account

How can I maintain different version control account(any common unix based version control like CVS,RCS,SCCS..) from a single UNIX Login Account. Many programmers share a common UNIX user/login account.How do they maintain separate Version Control Account. (1 Reply)
Discussion started by: johnbach
1 Replies

8. UNIX for Advanced & Expert Users

Printing to Windows and maintaining control

I'm new at the entire spectrum of printing in Unix, and especially when--as I understand it--the printers are on a Windows server. At work we have a variety of printers and printing from Windows, or from Unix via lp or lpr works fine. The initial problem: Our users will be printing up to 20... (1 Reply)
Discussion started by: effigy
1 Replies

9. Solaris

List of Commands

Dear All, I am a new Administrator of Solaris in the company , I need a list of the commands pls ... Regards Adel (2 Replies)
Discussion started by: ArabOracle.com
2 Replies
Login or Register to Ask a Question