Sha256: fe0829c51c2bd681f067afdf77951444a3eea85fe0c9706e9a8862124bbd4a54
Contents?: true
Size: 1.13 KB
Versions: 31
Compression:
Stored size: 1.13 KB
Contents
module VagrantPlugins module CommunicatorWinRM module CommandFilters # Converts a *nix 'rm' command to a PowerShell equivalent class Rm def filter(command) # rm -Rf /some/dir # rm -R /some/dir # rm -R -f /some/dir # rm -f /some/dir # rm /some/dir cmd_parts = command.strip.split(/\s+/) # Figure out if we need to do this recursively recurse = false cmd_parts.each do |k| argument = k.downcase if argument == '-r' || argument == '-rf' || argument == '-fr' recurse = true break end end # Figure out which argument is the path dir = cmd_parts.pop while !dir.nil? && dir.start_with?('-') dir = cmd_parts.pop end ret_cmd = '' if recurse ret_cmd = "rm #{dir} -recurse -force" else ret_cmd = "rm #{dir} -force" end return ret_cmd end def accept?(command) command.start_with?('rm ') end end end end end
Version data entries
31 entries across 28 versions & 5 rubygems