001//
002// JODConverter - Java OpenDocument Converter
003// Copyright 2009 Art of Solving Ltd
004// Copyright 2004-2009 Mirko Nasato
005//
006// JODConverter is free software: you can redistribute it and/or
007// modify it under the terms of the GNU Lesser General Public License
008// as published by the Free Software Foundation, either version 3 of
009// the License, or (at your option) any later version.
010//
011// JODConverter is distributed in the hope that it will be useful,
012// but WITHOUT ANY WARRANTY; without even the implied warranty of
013// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014// Lesser General Public License for more details.
015//
016// You should have received a copy of the GNU Lesser General
017// Public License along with JODConverter.  If not, see
018// <http://www.gnu.org/licenses/>.
019//
020package org.nuxeo.launcher.process;
021
022public class MacProcessManager extends UnixProcessManager {
023
024    @Override
025    protected String[] psCommand() {
026        return new String[] { "/bin/ps", "-e", "-o", "pid,command" };
027    }
028
029}