fix script path incantation
authorEvan Shelhamer <shelhamer@imaginarynumber.net>
Thu, 20 Mar 2014 05:29:17 +0000 (22:29 -0700)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Thu, 20 Mar 2014 05:31:59 +0000 (22:31 -0700)
data/cifar10/get_cifar10.sh
data/ilsvrc12/get_ilsvrc_aux.sh
data/mnist/get_mnist.sh
scripts/build_and_deploy_docs.sh
tools/extra/parse_log.sh

index 23e09ee..623c848 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env sh
 # This scripts downloads the CIFAR10 (binary version) data and unzips it.
 
-DIR="$(readlink -f $(dirname "$0"))"
+DIR="$( cd "$(dirname "$0")" ; pwd -P )"
 cd $DIR
 
 echo "Downloading..."
index dad17ff..b8b4944 100755 (executable)
@@ -6,7 +6,7 @@
 # - synset ids and words
 # - the training splits with labels
 
-DIR="$(readlink -f $(dirname "$0"))"
+DIR="$( cd "$(dirname "$0")" ; pwd -P )"
 cd $DIR
 
 echo "Downloading..."
index 9ece28f..8eb6aee 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env sh
 # This scripts downloads the mnist data and unzips it.
 
-DIR="$(readlink -f $(dirname "$0"))"
+DIR="$( cd "$(dirname "$0")" ; pwd -P )"
 cd $DIR
 
 echo "Downloading..."
index fdb75db..b602961 100755 (executable)
@@ -15,7 +15,7 @@ MSG=`git log --oneline -1`
 
 if [[ $BRANCH = 'master' ]]; then
     # Find the docs dir, no matter where the script is called
-    DIR="$(readlink -f $(dirname "$0"))"
+    DIR="$( cd "$(dirname "$0")" ; pwd -P )"
     DOCS_SITE_DIR=$DIR/../docs/_site
 
     # Make sure that docs/_site tracks remote:gh-pages.
index 9984460..01ea6f4 100755 (executable)
@@ -1,10 +1,10 @@
 #!/bin/bash
-# Usage parse_log.sh caffe.log 
+# Usage parse_log.sh caffe.log
 # It creates two files one caffe.log.test that contains the loss and test accuracy of the test and
 # another one caffe.log.loss that contains the loss computed during the training
 
-#get the dirname of the script
-DIR="$(readlink -f $(dirname "$0"))"
+# get the dirname of the script
+DIR="$( cd "$(dirname "$0")" ; pwd -P )"
 
 if [ "$#" -lt 1 ]
 then