Skip to content

Instantly share code, notes, and snippets.

@eufelipe
Created October 7, 2017 18:00
Show Gist options
  • Save eufelipe/d2e8b79696bfe9fc9944a4e2641de5a0 to your computer and use it in GitHub Desktop.
Save eufelipe/d2e8b79696bfe9fc9944a4e2641de5a0 to your computer and use it in GitHub Desktop.
alias c="clear"
alias l="ls -lah"
alias laravel-clean="php artisan cache:clear;php artisan config:clear;composer dump-autoload"
alias emulador="/Users/eufelipe/Library/Android/sdk/tools/emulator -netdelay none -netspeed full -avd Nexus_5_API_23"
export PATH="/Users/eufelipe/Library/Android/sdk/platform-tools":$PATH
export ANDROID_HOME=/Users/eufelipe/Library/Android/sdk
# GIT
function gitall() {
git add .
if [ "$1" != "" ] # or better, if [ -n "$1" ]
then
git commit -m "$1"
else
git commit -m update
fi
git push
}
# unzip any file
extract () {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.tar.xz) tar xvJf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*.xz) unxz $1 ;;
*.exe) cabextract $1 ;;
*) echo "\`$1`: unrecognized file compression" ;;
esac
else
echo "\`$1` is not a valid file"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment