diff options
author | makefu <github@syntax-fehler.de> | 2013-12-30 17:38:02 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-12-30 17:38:02 +0100 |
commit | ee33c348658a12a4e54281dc34eaca8639e247f8 (patch) | |
tree | 142ea8052af9e75886b6c71979eed302885ab22a /query/realpath/src/realpath.rb | |
parent | efef353ef2bf65ef6123fc699bce6c69fc37cfcc (diff) | |
parent | 11de3d6d4c62f7059cdb45992d7d0fec05dde0e4 (diff) |
Merge branch 'master' of ssh://github.com/krebscode/painload
Diffstat (limited to 'query/realpath/src/realpath.rb')
-rwxr-xr-x | query/realpath/src/realpath.rb | 10 |
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 |