Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
12-05-2008, 01:02 PM
|
#1
|
|
LQ Newbie
Registered: Jun 2006
Location: orbiting around Saturn
Distribution: LFS, knoppix
Posts: 16
Rep:
|
colored bash sessions, each its own history
I like to run multiple xterms with a bash session in each (who doesn't?) Usually these are color-coded, e.g. -bg "#880000" for VNC sessions, a dark violet for python programming experiments, etc. These are run from a script or desktop menu, and always the same dozen colors. I create and destroy these xterms all the time. No problem so far.
I rely heavily on the up arrow key to recall past commands. But eash bash session will recall the history of some random previous bash session. What i would like: If i create a new dark violet xterm, the bash shell running in that should recall the history from the previous time i ran bash in a dark violet xterm. Meanwhile, a brown xterm's bash will recall the history of the previous time i ran bash in a brown xterm.
If there wasn't one, is okay to come up blank. If there are multiple past xterms of a certain color, i don't care if it gets confused. This is all for a convenience, not life or death.
Is this possible with some wickedly clever PS1 or .bashrc incantation, or some X windows hocus pocus? Perhaps a different xterm (i actually use rxvt) or something?
|
|
|
|
12-07-2008, 04:20 AM
|
#2
|
|
Bash Guru
Registered: Jun 2004
Location: Osaka, Japan
Distribution: Debian sid + kde 3.5 & 4.4
Posts: 6,697
|
I think what you want to do is to use separate history files for each of the different kind of sessions that you launch. I don't know how to set this up exactly, but I do know that it's the HISTFILE shell variable that determines the location of the history your shell uses. You can probably add it to the scripts you use to launch the sessions.
There are also some other HIST* options available for making the command history more sane, such as having it ignore duplicate entries. Check the bash man page.
|
|
|
|
07-13-2009, 10:22 AM
|
#3
|
|
Member
Registered: Sep 2004
Location: Brussels, Belgium
Distribution: Slackware
Posts: 335
Rep: 
|
Add this to your .bashrc file:
Code:
this_tty=`tty`
this_tty=`basename $this_tty`
export HISTFILE=~/.bash_history.$this_tty
|
|
|
1 members found this post helpful.
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 03:53 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|