util_absolute_path_p {} pathWhat it does:
Check whether the path begins with a slashDefined in: /web/philip/packages/acs-core/utilities-procs.tcl
Source code:
arg_parser_for_util_absolute_path_p $args set firstchar [string index $path 0] if {[string compare $firstchar /]} { return 0 } else { return 1 }