We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b5510 commit b8486c6Copy full SHA for b8486c6
bashrc
@@ -27,6 +27,7 @@ alias ll='ls -l' # Long listed format for ls.
27
alias vi='vim' # Improved vi.
28
alias dr='screen -dr || screen' # Quickly resume a screen session or start one.
29
alias grpe='grep' # Fix a common typo.
30
+alias utc='TZ=UTC date' # Time in UTC.
31
32
# Some things only work on Linux.
33
if [ $OSTYPE == "linux-gnu" ]
@@ -41,5 +42,11 @@ else
41
42
alias d='date +%Y-%m-%d' # Useful for backing up files. Example: cp hosts hosts.`d`
43
fi
44
45
+# rbenv
46
+if [ -e ~/.rbenvrc ]
47
+then
48
+ . ~/.rbenvrc
49
+fi
50
+
51
# Increase nofile (max number of open files)
52
ulimit -n 4096 2>/dev/null
0 commit comments