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

          if rest.length == 0
            ::Guard.scope =  scope
          else
            output.puts "Unkown scope #{ rest.join(', ') }"
          end
        end