Merge branch 'master' of https://github.com/k1574/lib
This commit is contained in:
commit
d527bd9a54
2 changed files with 20 additions and 0 deletions
|
@ -18,5 +18,9 @@
|
|||
pl = pull
|
||||
fc = fetch
|
||||
lg = log
|
||||
stsh = stash
|
||||
type = cat-file -t
|
||||
dump = cat-file -p
|
||||
[core]
|
||||
autocrlf = input
|
||||
|
||||
|
|
16
profile
16
profile
|
@ -169,6 +169,10 @@ fn q {
|
|||
exit
|
||||
}
|
||||
|
||||
fn g {
|
||||
9grep $*
|
||||
}
|
||||
|
||||
fn uprofile {
|
||||
. $profile
|
||||
}
|
||||
|
@ -192,6 +196,18 @@ fn m {
|
|||
}
|
||||
}
|
||||
|
||||
fn rmr {
|
||||
rm -r $*
|
||||
}
|
||||
|
||||
fn rmf {
|
||||
rm -r -f $*
|
||||
}
|
||||
|
||||
fn cpr {
|
||||
cp -r $*
|
||||
}
|
||||
|
||||
fn psagrep {
|
||||
ps -A | grep $*
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue