= private = protected
rmdir(*path)
Same as Dir.rmdir, except multiple directories are allowed.
# File lib/shell/command-processor.rb, line 221 def rmdir(*path) @shell.check_point notify("rmdir #{path.join(' ')}") for dir in path Dir.rmdir(expand_path(dir)) end Void.new(@shell) end