dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 7af59a0f89b8a1813f57158af90071db6cb750d8
parent 5ada085d7b5b5a7eab6fb960b4b6b2c51907ed84
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Fri, 26 Sep 2014 22:27:39 -0700

Bash: Add comment

Diffstat:
bashrc | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/bashrc b/bashrc @@ -132,6 +132,7 @@ ipls () { ifconfig | grep 'inet addr:' | awk {'print $2'} } +# mkdir and cd in one command mkcd () { [ -n "$1" ] && mkdir -p "$@" && cd "$1" }