# File lib/guard/commands/reload.rb, line 20
        def process(*entries)
          scopes, rest = ::Guard::Interactor.convert_scope(entries)

          if rest.empty?
            ::Guard.reload scopes
          else
            output.puts "Unkown scope #{ rest.join(', ') }"
          end
        end