.bashrc modifications are like nesting for developers. All I have right now is a few aliases and some PATH modifications. What's in yours?
|
feedback
|
|
Check out dotfiles.org. It is a place for sharing what you do in any of your "dotfiles". | |||||||
|
feedback
|
|
The most interesting line in my .bashrc would have to be the one for prefixing my prompt with the previous command's return code:
This way if the command returns a failure code, that code prefixes the next prompt, but if it succeeds nothing is printed. It maintains the
This makes it easy to ensure that your programs have sensible return codes. | ||||
|
feedback
|
|
The big three things I put in every new bash file are the following:
It erases duplicate entries, cranks the size up to 10K entries (you can never have enough bash history, and tells the shell to append to the older history file, not overwrite it on exit. | |||||||
feedback
|
I love this. The up arrow auto-completes function commands like magic. | ||||
feedback
|
|
Aside from the usual boring things, like adding directories to $PATH and $MANPATH, setting $EDITOR and history stuff mentioned above:
..for shiney tab-completion (download here, completion for things like ssh hosts, so ssh mysi[tab] will complete ssh mysiteslongurl.example.com, and even seems to complete things like mencoder arguments)
..completes git commands, branch names and such (it's in the contrib directory of git, or here)
..shortened versions of common git commands, works with above tab completion
..stops cd [tab][tab] showing .DS_Store and such files, unless you do .[tab][tab] - this means I can do cat [tab] to select the only file visible file in the directory (instead of always getting .DS_Store and the file)
..ctrl+l is quite a stretch with one hand, ctrl+e is easier
..basically resets the terminal (changes to $HOME, clears screen)
..allows typing ".." to go up a dir, "..." to go up two levels and so on, also corrects "cd.." which I seemed to type a lot I also alias
| |||||||||
feedback
|
|
my ~/.bashrc file is very short; it has only the following in it:
that lets me separate everything out into much more manageable pieces, instead of having aliases mixed in with environment variables mixed in with my prompt customizations. | |||||||
feedback
|
|
I use bash but my login shell is set to sh and my .profile is set to start screen in reattach mode which starts bash. This way I can be disconnected at any time and not lose anything. .profile
.screenrc
.bashrc
.bash_login
.aliases
| ||||
|
feedback
|
Truncate long lines
use:
| ||||
|
feedback
|
cd ...
use
etc... | ||||
|
feedback
|
|
I add pwd to my prompt, aliases for deep directories I use a lot as well as wordy commands. I also keep things like CVSROOT, MANPATH etc in my .profile. The other thing I've got in my .profile is a bail out for systems that don't have bash (a pretty regular thing in my life). The switch example above for setting base paths might be better off in a .profile instead of .bashrc for this reason. Here is the function I use to color the prompt (cribbed from somewhere else online), I use a white background.
function prompt {
local WHITE="\[\033[1;37m\]"
local GREEN="\[\033[0;32m\]"
local CYAN="\[\033[0;36m\]"
local GRAY="\[\033[0;37m\]"
local BLUE="\[\033[0;34m\]"
local BLACK="\[\033[0;1m\]"
local RESET='\[\033[00m\]'
export PS1="${GREEN}\u${CYAN}@${BLUE}\h:${CYAN}\w${GREEN} >$ ${RESET}"
}
| ||||
|
feedback
|
|
My .bashrc is basically the default that comes with Ubuntu 8.04, with some added environment variables as needed for SQL Developer and SQLPLUS, among others. My .bash_aliases file gets longer by the day, mostly every combination of flags for ls, cdX aliases to go to specific points in my development tree, and some complex ssh tunnels so I don't have to remember which ports I need to open. | ||||
|
feedback
|
|
Historically this has been the most important part of my bashrc. I use it to set proper paths, e.g. ~/inst/$SYS_BASE/bin. | ||||
|
feedback
|
|
I've always been a fancy profile whore, so I spent a lot of time getting this to look like I want it to. But since I got it the way I like it, I haven't changed it in 3 years.
| |||||
feedback
|
|
Aliases
History
Host completion: when typing
Prompt
| ||||
|
feedback
|
|
An alias for rm, to mv, using the trashit script. This has been a big life saver. | ||||
feedback
|
|
My fingers hate moving, so here's a couple of my favorite aliases, based on some of my most-commonly-used commands:
I don't have to move my hands from the home row to list a directory's contents, and I can just repeat the last letter of my command when I do a very common task like moving up a directory or creating a directory and changing to it at the same time. | ||||
|
feedback
|
|
I have aliases that help me with directory navigation and others that are specific for my project. In a sense, the command line becomes a DSL of sorts. Since I use Cygwin's Bash on Windows, I have a consistent shell across all machines. I can barely work on someone else's machine without my aliases! I've blogged on some of the generic stuff here. I find them really useful and some (but not all) of my teammates pick it up on every project on which I work. | ||||
|
feedback
|
|
I usethis for my ANSI colored prompt including username and machine name: LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:.cmd=01;32:.exe=01;32:.com=01;32:.btm=01;32:.bat=01;32:.sh=00;32:.csh=00;32:.tar=01;31:.tgz=01;31:.arj=01;31:.taz=01;31:.lzh=01;31:.zip=01;31:.z=01;31:.Z=01;31:.gz=01;31:.bz2=01;31:.jpg=01;35:.gif=01;35:.bmp=01;35:.xbm=01;35:.xpm=01;35:*.tif=00;35:';
| ||||
|
feedback
|
|
I have a git repository for stuff I want on all my shells, where among other files, I have a .bash_shared file that I import from .bashrc. Exact file name search:
Fuzzy filename search (ff string matches *string*):
| ||||
|
feedback
|
Having (The extra gubbins in the xterm case is just to put username, hostname, cwd in the window title bar) How does it work? | ||||
|
feedback
|
| ||||
|
feedback
|
|
I'll be happy to answer any questions anyone has
| ||||
|
feedback
|