Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am smudge3806 on github.
  • I am smudge3806 (https://keybase.io/smudge3806) on keybase.
  • I have a public key ASDNNJLk4fjsOVRg0eGsiqarZRZVtx4gkWMasjDUCnrO1Ao

To claim this, I am signing this object:

#!/bin/bash
function download_git_completion
{
TARGET=$1
if [ ! -r $TARGET ]; then
GIT_VERSION=`git --version | awk '{print $3}'`
curl --silent "https://raw.githubusercontent.com/git/git/v$GIT_VERSION/contrib/completion/git-completion.bash" \
--output $TARGET
fi
base_url='https://gist.githubusercontent.com/Smudge3806'
rm ~/.bash{rc,_profile,_aliases} ~/.posh_bash
curl --silent $base_url/b11524e0ba0082db3e123727292becb7/raw --output ~/.bash_profile
curl --silent $base_url/6e93a63ab9900fffc9abbb694a94c420/raw --output ~/.bashrc
curl --silent $base_url/d6ff9e3fd5310ef7869fd0cb30ea292f/raw --output ~/.bash_aliases
curl --silent $base_url/134402a5af2d56395a11196d0ef64818/raw --output ~/.posh_bash
unset base_url
#!/bin/bash
#!/bin/bash
[ -r /etc/bashrc ] && . /etc/bashrc
[ -r ~/.bashrc ] && . ~/.bashrc
[ -r ~/.bash_aliases ] && . ~/.bash_aliases
[ -r ~/.posh_bash ] && . ~/.posh_bash
#!/bin/bash
shopt -s expand_aliases
alias ll='ls -l'