source: branches/version-2_12_3en-p1/phpinicopy.sh @ 20116

Revision 20116, 191 bytes checked in by nanasess, 13 years ago (diff)
  • svn properties を再設定
  • 再設定用のスクリプト追加
  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Id
Line 
1#!/bin/sh
2
3if [ ! $1 ]
4then
5ECCUBE_DIR=`pwd`
6else
7ECCUBE_DIR=$1
8fi
9
10for dir in *
11do
12if [ -d $dir ]
13then
14cp -f $ECCUBE_DIR/php.ini $dir
15cd $dir
16$ECCUBE_DIR/${0##*/} $ECCUBE_DIR
17cd ..
18fi
19done
20
Note: See TracBrowser for help on using the repository browser.