mirror of
https://github.com/opencultureconsulting/openrefine-batch.git
synced 2025-03-30 00:00:25 +01:00
release v0.6.1
This commit is contained in:
parent
afe253c257
commit
7b6b9d528f
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# openrefine-batch.sh, Felix Lohmeier, v0.6, 01.03.2017
|
# openrefine-batch.sh, Felix Lohmeier, v0.6.1, 01.03.2017
|
||||||
# https://github.com/felixlohmeier/openrefine-batch
|
# https://github.com/felixlohmeier/openrefine-batch
|
||||||
|
|
||||||
# user input
|
# user input
|
||||||
@ -9,16 +9,20 @@ if [ -z "$1" ]
|
|||||||
exit 2
|
exit 2
|
||||||
else
|
else
|
||||||
inputdir=$(readlink -f $1)
|
inputdir=$(readlink -f $1)
|
||||||
|
if [ ! -z "${inputdir// }" ] ; then
|
||||||
inputfiles=($(find -L ${inputdir}/* -type f -printf "%f\n" 2>/dev/null))
|
inputfiles=($(find -L ${inputdir}/* -type f -printf "%f\n" 2>/dev/null))
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
if [ -z "$2" ]
|
if [ -z "$2" ]
|
||||||
then
|
then
|
||||||
echo 1>&2 "please provide path to directory with config files (leave empty to import only)"
|
echo 1>&2 "please provide path to directory with config files (leave empty to import only)"
|
||||||
exit 2
|
exit 2
|
||||||
else
|
else
|
||||||
configdir=$(readlink -f $2)
|
configdir=$(readlink -f $2)
|
||||||
|
if [ ! -z "${configdir// }" ] ; then
|
||||||
jsonfiles=($(find -L ${configdir}/* -type f -printf "%f\n" 2>/dev/null))
|
jsonfiles=($(find -L ${configdir}/* -type f -printf "%f\n" 2>/dev/null))
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
if [ -z "$3" ]
|
if [ -z "$3" ]
|
||||||
then
|
then
|
||||||
echo 1>&2 "please provide path to output directory"
|
echo 1>&2 "please provide path to output directory"
|
||||||
@ -33,8 +37,10 @@ if [ -z "$4" ]
|
|||||||
exit 2
|
exit 2
|
||||||
else
|
else
|
||||||
crossdir=$(readlink -f $4)
|
crossdir=$(readlink -f $4)
|
||||||
|
if [ ! -z "${crossdir// }" ] ; then
|
||||||
crossprojects=($(find -L ${crossdir}/* -maxdepth 0 -type d -printf "%f\n" 2>/dev/null))
|
crossprojects=($(find -L ${crossdir}/* -maxdepth 0 -type d -printf "%f\n" 2>/dev/null))
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
if [ -z "$5" ]
|
if [ -z "$5" ]
|
||||||
then
|
then
|
||||||
ram="4G"
|
ram="4G"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user