Lines Matching full:script
32 f_dprintf "%s: loading includes..." script.subr
65 f_dprintf "script.subr: New resWord %s -> %s" "$resword" "$func"
96 # Load a script (usually filled with reswords). If $file is missing or NULL,
107 # Returns success if a script was loaded and itself returned success.
112 local script="$1" config_file retval=$SUCCESS
114 f_dprintf "$funcname: script=[%s]" "$script"
115 if [ ! "$script" ]; then
117 for script in \
123 [ -e "$script" ] && break
130 # Hint to others that we're running from a script, should they care
133 if [ "$script" = "-" ]; then
134 f_dprintf "$funcname: Loading script from stdin"
138 f_dprintf "$funcname: Loading script \`%s'" "$script"
139 if [ ! -e "$script" ]; then
140 f_show_msg "$msg_unable_to_open" "$script"
143 . "$script"
209 f_dprintf "%s: Successfully loaded." script.subr