mirror of
https://asciireactor.com/otho/cloudy-agn.git
synced 2024-12-13 04:25:06 +00:00
14 lines
273 B
Bash
14 lines
273 B
Bash
|
#!/usr/local/bin/bash
|
||
|
|
||
|
script_dir=$(
|
||
|
cd $(dirname $0) ;
|
||
|
pwd -P |sed 's@^\(.*\)/scripts.*@\1/scripts@'
|
||
|
)
|
||
|
base_dir=`pwd`
|
||
|
bin_dir="$script_dir/../bin"
|
||
|
|
||
|
for dir in $(echo cldn*)
|
||
|
do
|
||
|
echo "Processing ${dir}."
|
||
|
$script_dir/operations/package_tables.sh $dir
|
||
|
done
|