apm_backup_file_p

one of the documented procedures in this installation of the ACS
Usage:
apm_backup_file_p   path
What it does:
Returns 1 if $path is a backup file, or 0 if not. We consider it a backup file if any of the following apply:
Defined in: /web/philip/packages/acs-core/apm-procs.tcl

Source code:


    return [regexp {(\.old|\.bak|~)$|^#|^bak([^a-zA-Z]|$)} [file tail $path]]


philg@mit.edu