summaryrefslogtreecommitdiffstats
path: root/query/realpath
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-12-30 03:57:10 +0100
committermakefu <github@syntax-fehler.de>2013-12-30 03:57:10 +0100
commit17890aed8488845cd38aac917596048f3f716387 (patch)
treee6c9bdcc43154598850f055bb728c307ccb88517 /query/realpath
parent25f7b33bf43e4d7a049eb1f4885d24f24ac1dca9 (diff)
//query -> //Cancer
Diffstat (limited to 'query/realpath')
-rwxr-xr-xquery/realpath/install41
-rwxr-xr-xquery/realpath/src/realpath.rb10
2 files changed, 0 insertions, 51 deletions
diff --git a/query/realpath/install b/query/realpath/install
deleted file mode 100755
index 74671c81..00000000
--- a/query/realpath/install
+++ /dev/null
@@ -1,41 +0,0 @@
-#! /bin/sh
-set -euf
-
-cd `dirname $0`
-
-target=../../bin/realpath
-
-findexe() {
- OLDIFS="$IFS"
- IFS=:
- for d in $PATH; do
- f="$d/$1"
- if test -f "$f" -a -x "$f"; then
- echo $f
- IFS="$OLDIFS"
- return
- fi
- done
- IFS="$OLDIFS"
- ! :
-}
-
-if exe="`findexe readlink`" && $exe -f install | grep -q /install$; then
- ! test -e $target || rm $target
- cat > $target <<EOF
-#! /bin/sh -euf
-exec $exe -f "\${1-\$file_name}"
-EOF
- chmod +x $target
- echo '//query/realpath: install readlink' >&2
- exit
-fi
-
-if type ruby 1>/dev/null 2>/dev/null; then
- ln -snf ../query/realpath/src/realpath.rb $target
- echo '//query/realpath: install realpath.rb' >&2
- exit
-fi
-
-echo 'Error 2: your system is made of stupid!'
-exit 23
diff --git a/query/realpath/src/realpath.rb b/query/realpath/src/realpath.rb
deleted file mode 100755
index 8e19785b..00000000
--- a/query/realpath/src/realpath.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env ruby
-
-begin
- $stdout.print File.realpath(ARGV[0])
- $stdout.print "\n"
-rescue Exception => err
- $stderr.print err
- $stderr.print "\n"
- exit 1
-end