blob: b3d9340f08db6e1942e8fd669dbf4847b22d5b88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# with lots of 3rd-party amazing aliases installed, just need something to explore it quickly.
#
# - acs: alias cheatsheet
# group alias by command, pass addition argv to grep.
function acs(){
(( $+commands[python] )) || {
echo "[error] No python executable detected"
return
}
alias | python ${functions_source[$0]:h}/cheatsheet.py $@
}
|