Server IP : 51.89.169.208 / Your IP : 216.73.216.211 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
#compdef mkdir gmkdir zf_mkdir local curcontext="$curcontext" state line expl args variant ret=1 typeset -A opt_args args=( '(-m --mode)'{-m,--mode=}'[set permission mode]: :_file_modes' '(-p --parents)'{-p,--parents}'[make parent directories as needed]' '(-)*: :->directories' ) # It can still happen that there is a precommand command or builtin in the line. # In such cases, the variant has to be modified suitably, after further checking # the variant of the _command_ mkdir. # # $precommands is defined in _main_complete if (( ${+precommands[(r)command]} )); then _mkdir_command () { command mkdir "$@" } _pick_variant -c _mkdir_command -r variant gnu=gnu unix --help unfunction _mkdir_command elif (( ${+precommands[(r)builtin]} )) || (( ${+builtins[mkdir]} )) || [[ "$(type -w mkdir)" == "*: builtin" ]]; then variant=zsh else _pick_variant -r variant gnu=gnu zsh='\(eval\)' $OSTYPE --help fi # Now $variant is set. case $variant in gnu|freebsd*|dragonfly*) args+=( '(-v --verbose)'{-v,--verbose}'[print message for each created directory]' ) ;| gnu) if [[ $OSTYPE == linux* ]]; then args+=( '(-Z --context)'{-Z,--context=}'[set SELinux context]:SELinux context' ) fi args+=( '(- :)--help[display help information]' '(- :)--version[display version information]' ) ;; zsh) # remove all options ;; *) # non-GNU: remove long options args=( ${${${args:#(|*\))--*}//--[^ )]#/}/\( #\)/} ) ;; esac _arguments -C -s $args && ret=0 case "$state" in directories) _wanted directories expl \ 'parent directory (alternatively specify name of directory)' \ _path_files -/ && ret=0 ;; esac return ret