MINI SHELL

Server : Apache/2.2.2 (Fedora)
System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686
User : apache ( 48)
PHP Version : 5.2.9
Disable Function : NONE
Directory :  /usr/share/zsh/4.2.5/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/zsh/4.2.5/functions/_retrieve_cache
#autoload
#
# Retrieval component of completions caching layer

local _cache_ident _cache_dir _cache_path _cache_policy
_cache_ident="$1"

if zstyle -t ":completion:${curcontext}:" use-cache; then
  # Decide which directory to retrieve cache from, and ensure it exists
  zstyle -s ":completion:${curcontext}:" cache-path _cache_dir
  : ${_cache_dir:=${ZDOTDIR:-$HOME}/.zcompcache}
  if [[ ! -d "$_cache_dir" ]]; then
    [[ -e "$_cache_dir" ]] &&
      _message "cache-dir ($_cache_dir) isn't a directory\!"
    return 1
  fi

  _cache_path="$_cache_dir/$_cache_ident"

  if [[ -e "$_cache_path" ]]; then
    _cache_invalid "$_cache_ident" && return 1

    . "$_cache_path"
    return 0
  else
    return 1
  fi
else
  return 1
fi


Anon7 - 2021