File: local-install-exec

package info (click to toggle)
eprover 3.2.5%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,504 kB
  • sloc: ansic: 104,396; csh: 13,135; python: 11,207; awk: 5,825; makefile: 554; sh: 400
file content (33 lines) | stat: -rwxr-xr-x 644 bytes parent folder | download | duplicates (2)
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
#! /bin/sh
#
# Just for local convenience....adapt for your own use.
#

testinstall()
{
    if test -f "$HOME/bin/$1"; then
	echo "File ~/bin/$1 exists and left unchanged";
    else
	echo Installing $1
	echo `pwd`/$1 $HOME/bin/$1
	ln -s `pwd`/$1 $HOME/bin/$1
    fi
}


for file in *.awk ; do
    testinstall $file
done

for file in *.sh; do
    testinstall $file
done

for file in *.py; do
    testinstall $file
done
cd ../PROVER

for file in eprover classify_problem termprops direct_examples ekb_create ekb_delete ekb_ginsert ekb_insert tsm_classify epclanalyse epclextract epcllemma checkproof eground eproof; do
    testinstall $file
done