Posts

Showing posts from May, 2018

ZSH tips

Image
ZSH's tips man zsh Zsh overview man zshmisc Anything not fitting into the other sections man zshexpn Zsh command and parameter expansion man zshparam Zsh parameters man zshoptions Zsh options man zshbuiltins Zsh built-in functions man zshzle Zsh command line editing man zshcompwid Zsh completion widgets man zshcompsys Zsh completion system man zshcompctl Zsh completion control man zshmodules Zsh loadable modules man zshzftpsys Zsh built-in FTP client man zshall Meta-man page containing all of the above info --index-search=age zsh # get man info for zsh function age *N* zinfo(){info --index-search=$1 zsh} *N* /usr/share/zsh/htmldoc/zsh_toc.html Install on Linux > yum install zsh *N* > yum update zsh *N* # install from source ver=5.5.1 wget --no-check-certificate https://sourceforge.net/projects/zsh/files/zsh/$ver/zsh-$ver.tar.gz tar zxvf zsh-$ver.tar.gz yum install gcc ncurses-devel # if required cd zsh-$ver &a