zshell operators code example Example: zsh check if file exists FILE=/etc/resolv.conf if [[ -f "$FILE" ]]; then echo "$FILE exists." fi