Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
Unix

Journal Journal: My .cshrc file

# csh initialization for RestonTech, Ltd.
# Extremely hacked by Alec.

alias h         history 25
alias j         jobs -l
alias la        ls-F -luAG
alias lc        ls-F -lcAG
alias ll        ls-F -loAG
alias lm        "ls-F -loA | less -R"
alias su        su -m
alias n         netstat
alias nn        netstat -n
alias nm        netstat -m
alias p         pico -w
alias lookup    "whois -h whois.arin.net"

set path = (/sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin $HOME/bin)
set watch = (1 any any)
set cdpath = "~/"

setenv  EDITOR  ee
setenv  PAGER   most
setenv  BLOCKSIZE       K
setenv  EXINIT  'set autoindent'

if ($?REMOTEHOST) then
        setenv  TERM xterm-color
        endif

if ( $?prompt ) then
        set filec
        bindkey "^W" backward-delete-word
        bindkey -k up history-search-backward
        bindkey -k down history-search-forward
        set ellipsis
        set prompt="<$uid>%B%C03:>%b"
        endif
Mozilla

Journal Journal: My Firefox config

To mitigate the memory leaks (not actualy leaks, but a feature) in Firefox, go to the following url: about:config

Change the following settings as indicated:
browser.sessionhistory.max_entries=24
browser.sessionhistory.max_total_viewers=10
browser.tabs.loadInBackground=false
network.prefetch-next=false

Slashdot Top Deals

Old programmers never die, they just branch to a new address.

Working...