# This shell file used for practice the learning from the following link: # - https://blog.dnmfarrell.com/post/bash-function-names-can-be-almost-anything/ function ++ { (( $1++ )); } a=1 ++ a echo $a