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

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