Lines Matching refs:script
33 f_dprintf "%s: loading includes..." script.subr
66 f_dprintf "script.subr: New resWord %s -> %s" "$resword" "$func"
97 # Load a script (usually filled with reswords). If $file is missing or NULL,
108 # Returns success if a script was loaded and itself returned success.
113 local script="$1" config_file retval=$SUCCESS
115 f_dprintf "$funcname: script=[%s]" "$script"
116 if [ ! "$script" ]; then
118 for script in \
124 [ -e "$script" ] && break
131 # Hint to others that we're running from a script, should they care
134 if [ "$script" = "-" ]; then
135 f_dprintf "$funcname: Loading script from stdin"
139 f_dprintf "$funcname: Loading script \`%s'" "$script"
140 if [ ! -e "$script" ]; then
141 f_show_msg "$msg_unable_to_open" "$script"
144 . "$script"
217 f_dprintf "%s: Successfully loaded." script.subr