view mkinstalldirs @ 26043:255f19f33b82

(locate-in-alternate-database): Added this function (locate): Added locate-post-command-hook. (locate-prompt-for-command): Added this variable. (locate): If locate-prompt-for-command is set, prompt for a command to run to populate the locate buffer as the default behavior. (locate-update): Add prefix arg to locate call. (locate-with-filter): Add prefix arg to locate call. (locate): Add prefix arg. If set, the function prompts the user (locate-mouse-face): No longer needed. (locate-mode): Setup `dired-subdir-alist' cleanly using `dired-alist-add-1'. (locate-set-properties): Set properties cleanly using `dired-insert-set-properties', giving dired like output. for a command to run instead of the default one. (locate-grep-history-list): Added this variable. (locate-with-filter): Use locate-grep-history-list instead of grep-history. (locate-filter-output): filter is not regexp-quoted. (locate-mode-map): Added keybinding for locate-find-directory. Changed keybinding for "U" from dired-unmark-all-files-no-query to dired-unmark-all-files. (locate-find-directory): Added this function. (locate-find-directory-other-window): Added this function. (locate-get-dirname): Added this function. (locate-mouse-view-file): Renamed mouse-locate-view-file to this name.
author Peter Breton <pbreton@attbi.com>
date Sat, 16 Oct 1999 03:47:06 +0000
parents 4fe4a165a116
children 774df19dd335
line wrap: on
line source

#! /bin/sh
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# Created: 1993-05-16
# Public domain

# $Id: mkinstalldirs,v 1.11 1998/05/19 07:05:25 drepper dead $

errstatus=0

for file
do
   set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
   shift

   pathcomp=
   for d
   do
     pathcomp="$pathcomp$d"
     case "$pathcomp" in
       -* ) pathcomp=./$pathcomp ;;
     esac

     if test ! -d "$pathcomp"; then
        echo "mkdir $pathcomp" 1>&2

        mkdir "$pathcomp" || lasterr=$?

        if test ! -d "$pathcomp"; then
  	  errstatus=$lasterr
        fi
     fi

     pathcomp="$pathcomp/"
   done
done

exit $errstatus

# mkinstalldirs ends here