Mercurial > hg > octave-nkf
view scripts/mkinstalldirs @ 14527:8c988dabbe8e
Add new internal variable single_quote_escape_processing
* strings.txi: Add single_quote_escape_processing to documentation
* octave.cc (maximum_braindamage): Turn variable on in --traditional mode.
* ov.cc (Fsingle_quote_escape_processing): New function to query and set
variable.
* ov.h: Declare Vsingle_quote_escape_processing variable.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Wed, 04 Apr 2012 21:08:38 -0700 |
parents | 6929a31e7624 |
children |
line wrap: on
line source
#!/bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman <friedman@gnu.org> # Created: 1993-05-16 # Last modified: Wed Jan 25 09:35:21 1995 # Public domain errstatus=0 dirmode=0755 for file in ${1+"$@"} ; do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d in ${1+"$@"} ; do pathcomp="$pathcomp$d" case "$pathcomp" in -* ) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" 1>&2 mkdir "$pathcomp" || errstatus=$? echo "chmod $dirmode $pathcomp" 1>&2 chmod $dirmode "$pathcomp" || errstatus=$? fi pathcomp="$pathcomp/" done done exit $errstatus # mkinstalldirs ends here