# File lib/sshkit/command_map.rb, line 63
    def defaults
      Hash.new do |hash, command|
        if %w{if test time exec}.include? command.to_s
          hash[command] = command.to_s
        else
          hash[command] = "/usr/bin/env #{command}"
        end
      end
    end