summaryrefslogtreecommitdiffstats
path: root/.cshrc
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-03-04 15:19:36 -0800
committerbnewbold <bnewbold@manus.(none)>2007-03-04 15:19:36 -0800
commit7818aad67cb48d86fe878057fdae96015f5c5898 (patch)
treed3c611bbe632bb89661bf1832d79d3b1ff4e00a1 /.cshrc
downloadopenwrt-repro-7818aad67cb48d86fe878057fdae96015f5c5898.tar.gz
openwrt-repro-7818aad67cb48d86fe878057fdae96015f5c5898.zip
initial checkin from manus
Diffstat (limited to '.cshrc')
-rw-r--r--.cshrc34
1 files changed, 34 insertions, 0 deletions
diff --git a/.cshrc b/.cshrc
new file mode 100644
index 0000000..2505aa9
--- /dev/null
+++ b/.cshrc
@@ -0,0 +1,34 @@
+# $FreeBSD: src/share/skel/dot.cshrc,v 1.13 2001/01/10 17:35:28 archie Exp $
+#
+# .cshrc - csh resource script, read at beginning of execution by each shell
+#
+# see also csh(1), environ(7).
+#
+
+alias h history 25
+alias j jobs -l
+alias la ls -a
+alias lf ls -FA
+alias ll ls -lA
+
+# A righteous umask
+umask 22
+
+set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin /usr/X11R6/bin $HOME/bin)
+
+setenv EDITOR vi
+setenv PAGER more
+setenv BLOCKSIZE K
+
+if ($?prompt) then
+ # An interactive shell -- set some stuff up
+ set filec
+ set history = 100
+ set savehist = 100
+ set mail = (/var/mail/$USER)
+ if ( $?tcsh ) then
+ bindkey "^W" backward-delete-word
+ bindkey -k up history-search-backward
+ bindkey -k down history-search-forward
+ endif
+endif