Friday, January 29, 2021
Custom aliases in oh-my-zsh
With oh-my-zsh, you can store custom aliases in multiple (?per application) file under .oh-my-zsh/custom
giving them .zsh
file extensions.1
¶For example, in my hugo.zsh
file, I have:
alias hnewtil="/Users/alan/Documents/blog/ojisan/scripts/newtil.sh"
alias gtojisan="cd /Users/alan/Documents/blog/ojisan; ls -l;"
Executing inline Python in a shell script
It’s possible using the -c
command.2
python -c 'import foo; foo.bar()'
no way