summaryrefslogtreecommitdiffstats
path: root/query/realpath
diff options
context:
space:
mode:
authortv <tv@xso>2011-09-10 03:50:49 +0200
committertv <tv@xso>2011-09-10 03:50:49 +0200
commit3aaf385f29b0f9c8bc815347f92890b2542cf1e1 (patch)
treeee204506a4a047e02ce56dd2173a1649e90cf78d /query/realpath
parent9e81bd677a1efa4533ff4eee84610518f6d5ff4b (diff)
//query realpath.rb: initial import
From: https://github.com/pfleidi/dotfiles/blob/master/bin/realpath
Diffstat (limited to 'query/realpath')
-rwxr-xr-xquery/realpath/src/realpath.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/query/realpath/src/realpath.rb b/query/realpath/src/realpath.rb
new file mode 100755
index 00000000..8e19785b
--- /dev/null
+++ b/query/realpath/src/realpath.rb
@@ -0,0 +1,10 @@
+#!/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