summaryrefslogtreecommitdiffstats
path: root/query/realpath/src/realpath.rb
diff options
context:
space:
mode:
Diffstat (limited to 'query/realpath/src/realpath.rb')
-rwxr-xr-xquery/realpath/src/realpath.rb10
1 files changed, 0 insertions, 10 deletions
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