You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
353 B
11 lines
353 B
# 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 $@
|
|
}
|