Skip to content

Instantly share code, notes, and snippets.

@mcgivrer
Created September 15, 2022 14:46
Show Gist options
  • Save mcgivrer/699da2a47cf1f93ff94236e423d9e493 to your computer and use it in GitHub Desktop.
Save mcgivrer/699da2a47cf1f93ff94236e423d9e493 to your computer and use it in GitHub Desktop.
Useful aliases
#!/bin/bash
alias l='ls --color=yes'
alias ll='l -l'
alias mci='mvn clean install'
alias mcin='mci -DskipTests=true'
alias mpp='mvn release:prepare'
alias mpperf='mvn release:perform'
alias idea='idea64.exe %1 &'
alias ltree="ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment