|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#! /bin/bash
#
# Author: Marcin Woliński
# This file is in the public domain.
swigradir=`dirname $0`
if [ $# -eq 0 ]; then
pliki=*.oldforest
else
pliki=$*
fi
for i in $pliki
do
rdzen=`basename $i .oldforest`
fullname=$rdzen.oldforest
outname=$rdzen.forest
if grep '^sukces\.$' $fullname >/dev/null
then
echo '********* Przetwarzam (sukces) ' $fullname
else
echo '********* Pomijam (porażka) ' $fullname
continue
fi
swipl -t halt -g "['$fullname','$swigradir/oldforest2edges'], run('$rdzen')" >$outname
done
### Local Variables:
### coding: utf-8
### mode: shell-script
### End:
|