From: oetiker Date: Wed, 1 Oct 2008 20:25:05 +0000 (+0000) Subject: export is not required X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0a14406318afc957a25c73dc9166fdd13405267a;p=rrdtool-all.git export is not required git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@1560 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/tutorial/lisa2008/rrd-by-example/ex/catch-fetch.sh b/tutorial/lisa2008/rrd-by-example/ex/catch-fetch.sh index d0b4109d..5af50f1f 100755 --- a/tutorial/lisa2008/rrd-by-example/ex/catch-fetch.sh +++ b/tutorial/lisa2008/rrd-by-example/ex/catch-fetch.sh @@ -1,5 +1,5 @@ #!/bin/sh -export PATH=/scratch/rrd4/bin:$PATH +PATH=/scratch/rrd4/bin:$PATH R=rrdtool $R create x.rrd \ --step=300 \ diff --git a/tutorial/lisa2008/rrd-by-example/ex/create-first.sh b/tutorial/lisa2008/rrd-by-example/ex/create-first.sh index 06adfdb3..b7713d7f 100755 --- a/tutorial/lisa2008/rrd-by-example/ex/create-first.sh +++ b/tutorial/lisa2008/rrd-by-example/ex/create-first.sh @@ -1,5 +1,5 @@ #!/bin/sh -export PATH=/scratch/rrd4/bin:$PATH +PATH=/scratch/rrd4/bin:$PATH R=rrdtool $R create first.rrd \ --step=300 \ diff --git a/tutorial/lisa2008/rrd-by-example/ex/update-real.sh b/tutorial/lisa2008/rrd-by-example/ex/update-real.sh index 26054e12..42053b71 100755 --- a/tutorial/lisa2008/rrd-by-example/ex/update-real.sh +++ b/tutorial/lisa2008/rrd-by-example/ex/update-real.sh @@ -1,5 +1,5 @@ #!/bin/sh -export PATH=/scratch/rrd4/bin:$PATH +PATH=/scratch/rrd4/bin:$PATH R=rrdtool $R create real.rrd \ --step=300 \