-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed aliases other than frequency.
- Loading branch information
Showing
1 changed file
with
1 addition
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,5 @@ | ||
# Wrapper for frequency | ||
function frequency() | ||
function frequency() | ||
{ | ||
bb -i -f $BB_SCRIPTS/src/frequency.clj -- $@ | ||
} | ||
|
||
# mkdir and cd | ||
function mkcd() { mkdir $1; cd $1 ;} | ||
|
||
# git push for new branch | ||
function push() { echo "Pushing to $(git branch --show-current)"; git push --set-upstream origin $(git branch --show-current);} | ||
|
||
## Composed with clipboard | ||
# format json | ||
alias jlint='pbpaste|jq . |pbcopy' | ||
|
||
# deduplicate | ||
alias dedup='pbpaste| sort -u|pbcopy' | ||
|
||
# Cleanup all the branches except master | ||
alias cleanup_branches='git branch|grep -v master|xargs git branch -d' | ||
|
||
# Shorthand for gradle with enhanced heap and parallel option | ||
function g() { ./gradlew -Dorg.gradle.jvmargs=-Xmx10g --parallel $@; } |