summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/sample/fullpath.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/sample/fullpath.rb')
-rw-r--r--ruby_1_9_3/sample/fullpath.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/ruby_1_9_3/sample/fullpath.rb b/ruby_1_9_3/sample/fullpath.rb
deleted file mode 100644
index 112ca58081..0000000000
--- a/ruby_1_9_3/sample/fullpath.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /usr/local/bin/ruby
-# convert ls-lR filename into fullpath.
-
-if ARGV[0] =~ /-p/
- ARGV.shift
- path = ARGV.shift
-end
-
-if path == nil
- path = ""
-elsif path !~ %r|/$|
- path += "/"
-end
-
-while line = gets()
- case line
- when /:$/
- path = line.chop.chop + "/"
- when /^total/, /^d/
- when /^(.*\d )(.+)$/
- print($1, path, $2, "\n")
- end
-end