-
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.
- Loading branch information
Kai Chen
committed
May 27, 2024
1 parent
3de89bc
commit 9f85c14
Showing
3 changed files
with
25 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# tmux or screen ? | ||
(bin-exist tmux) && alias s=tmux || alias s=screen | ||
|
||
alias find='noglob find' # noglob for find | ||
alias grep='grep -I --color=auto' | ||
alias egrep='egrep -I --color=auto' | ||
alias df='df -Th' | ||
alias du='du -h' | ||
|
||
alias gc="git clean -f -e '!*.orig'" | ||
|
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
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