(index ("install-file" 0) ("install-dir" 672) ("install" 988) ("install" 988) ("install" 988) ("file=?" 1346))
(def (sig (procedure " (install-file FILES TARGET #!key OWNER GROUP (MODE 755) PRESERVE-TIME)" (id install-file))) (p "File(s) are copied to the target file or directory. If the destination is a directory, then the file is copied into the directory with its original filename. If the target file already exists, it is overwritten if permissions allow. " (tt "install-file") " attempts to prevent installing a file onto itself. Installing " (i "/dev/null") " (" (i "nul") " on Windows) creates an empty file. " (i "mode") " must be expressed in octal notation; " (i "mode") ", " (i "owner") " and " (i "group") " are ignored on Windows. The return value is unspecified."))
(def (sig (procedure "(install-dir DIRECTORIES #!key OWNER GROUP (MODE 755))" (id install-dir))) (p "Create all components of the given directory(ies). " (i "mode") " must be expressed in octal notation; " (i "mode") ", " (i "owner") " and " (i "group") " are ignored on Windows. The return value is unspecified."))
(def (sig (syntax "(install [-p] [-g GROUP] [-m MODE] [-o OWNER] SRC DST)" (id install)) (syntax "(install [-p] [-g GROUP] [-m MODE] [-o OWNER] SRC ... DIR)" (id install)) (syntax "(install      [-g GROUP] [-m MODE] [-o OWNER] -d DIR ...)" (id install))) (p "Handy command-line-like syntax around " (tt "install-file") " and " (tt "install-directory") "."))
(def (sig (procedure "(file=? FILE1 FILE2)" (id file=?))) (p "Determine whether two paths represents the same file."))
