1var void 2var void 3def e_timewarn "\r\n\ashell will timeout in 60 seconds due to inactivity" 4def e_runvi "\\hist -e \"${VISUAL:-${EDITOR:-vi}}\" " 5def e_timeout "timed out waiting for input" 6def e_mailmsg "you have mail in $_" 7def e_query "no query process" 8def e_history "no history file" 9def e_histopen "history file cannot open" 10def e_option "%s: bad option(s)" 11def e_toomany "open file limit exceeded" 12def e_argtype "invalid argument of type %c" 13def e_oneoperand "one operand expected" 14def e_formspec "%c: unknown format specifier" 15def e_badregexp "%s: invalid regular expression" 16def e_number "%s: bad number" 17def e_badlocale "%s: unknown locale" 18def e_nullset "%s: parameter null" 19def e_notset "%s: parameter not set" 20def e_noparent "%s: no parent" 21def e_subst "%s: bad substitution" 22def e_create "%s: cannot create" 23def e_tmpcreate "cannot create temporary file" 24def e_restricted "%s: restricted" 25def e_pfsh "%s: disabled in profile shell" 26def e_pexists "process already exists" 27def e_exists "%s: file already exists" 28def e_pipe "cannot create pipe" 29def e_alarm "cannot set alarm" 30def e_open "%s: cannot open" 31def e_notseek "%s: not seekable" 32def e_badseek "%s: invalid seek offset" 33def e_badpattern "%s: invalid shell pattern" 34def e_noread "%s: pattern seek requires read access" 35def e_logout "Use 'exit' to terminate this shell" 36def e_exec "%s: cannot execute" 37def e_pwd "cannot access parent directories" 38def e_found "%s: not found" 39def e_defined "%s: function not defined" 40def e_nointerp "%s: interpreter not found" 41def e_subscript "%s: subscript out of range" 42def e_toodeep "%s: recursion too deep" 43def e_access "permission denied" 44def e_nouniverse "universe not accessible" 45def e_direct "bad directory" 46def e_file "%s: bad file unit number" 47def e_redirect "redirection failed" 48def e_trap "%s: bad trap" 49def e_readonly "%s: is read only" 50def e_badfield "%d: negative field size" 51def e_ident "%s: is not an identifier" 52def e_badname "%s: invalid name" 53def e_varname "%s: invalid variable name" 54def e_badfun "%s: invalid function name" 55def e_aliname "%s: invalid alias name" 56def e_badexport "%s: only simple variables can be exported" 57def e_badref "%s: reference variable cannot be an array" 58def e_badsubscript "%c: invalid subscript in assignment" 59def e_noarray "%s: cannot be an array" 60def e_badappend "%s: invalid append to associative array" 61def e_noref "%s: no reference name" 62def e_nounattr "cannot unset attribute C or A or a" 63def e_selfref "%s: invalid self reference" 64def e_globalref "%s: global reference cannot refer to local variable" 65def e_noalias "%s: alias not found\n" 66def e_format "%s: bad format" 67def e_redef "%s: type cannot be redefined" 68def e_required "%s: is a required element of %s" 69def e_badtformat "%c: bad format character in time format" 70def e_nolabels "%s: label not implemented" 71def e_notimp "%s: not implemented" 72def e_notelem "%.*s: is not an element of %s" 73def e_notenum "%s: not an enumeration type" 74def e_unknowntype "%.*s: unknown type" 75def e_unknownmap "%s: unknown mapping name" 76def e_mapchararg "-M requires argument when operands are specified" 77def e_subcomvar "%s: compound assignment requires sub-variable name" 78def e_badtypedef "%s: type definition requires compound assignment" 79def e_typecompat "%s: array instance incompatible with type assignment" 80def e_nosupport "not supported" 81def e_badrange "%d-%d: invalid range" 82def e_eneedsarg "-e - requires single argument" 83def e_badbase "%s unknown base" 84def e_loop "%s: would cause loop" 85def e_overlimit "%s: limit exceeded" 86def e_badsyntax "incorrect syntax" 87def e_badwrite "write to %d failed" 88def e_staticfun "%s: defined as a static function in type %s and cannot be redefined" 89def e_on "on" 90def e_off "off" 91def is_reserved " is a keyword" 92def is_builtin " is a shell builtin" 93def is_spcbuiltin " is a special shell builtin" 94def is_builtver "is a shell builtin version of" 95def is_alias "%s is an alias for " 96def is_xalias "%s is an exported alias for " 97def is_talias "is a tracked alias for" 98def is_function " is a function" 99def is_ufunction " is an undefined function" 100def e_newtty "Switching to new tty driver..." 101def e_oldtty "Reverting to old tty driver..." 102def e_no_start "Cannot start job control" 103def e_no_jctl "No job control" 104def e_terminate "You have stopped jobs" 105def e_done " Done" 106def e_nlspace "\n " 107def e_running " Running" 108def e_ambiguous "%s: Ambiguous" 109def e_jobsrunning "You have running jobs" 110def e_no_job "no such job" 111def e_no_proc "no such process" 112def e_badpid "%s: invalid process id" 113def e_jobusage "%s: Arguments must be %%job, process ids, or job pool names" 114def e_coredump "(coredump)" 115def e_alphanum "[_[:alpha:]]*([_[:alnum:]])" 116def e_devfdNN "/dev/fd/+([0-9])" 117def e_devfdstd "/dev/@(fd/+([0-9])|std@(in|out|err))" 118def e_signo "Signal %d" 119def e_cantget "cannot get %s" 120def e_cantset "cannot set %s" 121def e_mapping "mapping" 122def e_versions "versions" 123def e_heading "Current option settings" 124def e_sptbnl " \t\n" 125def e_tolower "tolower" 126def e_toupper "toupper" 127def e_defpath "/bin:/usr/bin:" 128def e_defedit "/usr/bin/ed" 129def e_unknown "<command unknown>" 130def e_devnull "/dev/null" 131def e_traceprompt "+ " 132def e_supprompt "# " 133def e_stdprompt "$ " 134def e_profile "$HOME/.profile" 135def e_sysprofile "/etc/profile" 136def e_suidprofile "/etc/suid_profile" 137def e_sysrc "/etc/ksh.kshrc" 138def e_bash_sysrc "/etc/bash.bashrc" 139def e_bash_rc "$HOME/.bashrc" 140def e_bash_login "$HOME/.bash_login" 141def e_bash_logout "$HOME/.bash_logout" 142def e_bash_profile "$HOME/.bash_profile" 143def e_crondir "/usr/spool/cron/atjobs" 144def e_prohibited "login setuid/setgid shells prohibited" 145def e_suidexec "/etc/suid_exec" 146def hist_fname "/.sh_history" 147def e_dot "." 148def e_envmarker "A__z" 149def e_timeformat "\nreal\t%2lR\nuser\t%2lU\nsys\t%2lS" 150def e_dict "libshell" 151def e_funload "function, built-in or type definition for %s not found in %s" 152