My .bashrc

Download and install

Everything is in bashrc.tar.gz. Untarrring the file will produce .bash_login, .bashrc and acd_func.sh. To permit future updates, provide your own custom .bashrc2 instead of editing .bashrc from the archive.

What is in my '.bashrc'

Countless times I have been exposed to the elements without my faithful '.bashrc'. No more.

X11 clipboard and Bash

If you ever wanted to copy the contents of a file into the clipboard you might like xclip. This is similar to the concept of 'clip:' from 4NT -- a virtual device name representing the clipboard that you can redirect to or from. For example:

lotzman@safe$ cat .bashrc | xlip
lotzman@safe$ xclip -o > bashrc_copy

First line sends .bashrc to the X11 clipboard. Then from clipboard we output to bashrc_copy. There are more options in the man page of xclip.

On Debian, if xclip is not already installed, try "apt-get install xclip".


last updated: 28-feb-2005 | comments | home page | the text of this page is public domain