This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Start up script



----- Original Message -----
From: "Robert Mark Bram" <relaxedrob@optushome.com.au>
To: "Andrew Markebo" <flognat@flognat.myip.org>
Cc: "Cygwin" <cygwin@cygwin.com>
Sent: Monday, March 18, 2002 8:21 PM
Subject: RE: Start up script


> Howdy all!
>
> Read the documentation.. made my .bashrc script!
>
> Here it is so far:
>
> function ll
> {
>    ls -l
> }

alias ls='/bin/ls --color -F'
alias l='ls'
alias ll='ls -l'
alias la='ls -A'
alias d='cd'
alias p='cd -'
alias s='cd ..'
alias g='grep'
alias G='grep -i'
alias me='ps -u `whoami`'
alias h='history'
alias c='clear'
alias x='exit'
alias e='vim'

are the ones I use often. No need for "function" BTW

Oh, and don't forget the all-time most important piece of  .bashrc setup
when you are logged in as someone else: Run

echo "echo sleep 1 >> .bashrc" >> .bashrc

#(damn this system gets slower every time I log in :)

HTH
Oleg

> function m
> {
>    man $1 | less
> }
>
>
>
>
> Any one have any other nice tricks they use in theirs?
>
> Rob


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]