All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.javacodesign.DebDetector Maven / Gradle / Ivy

package io.github.javacodesign;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

public class DebDetector extends CommandRunner {

    public boolean apply() throws IOException {
        return runCommand(buildCommand());
    }

    private List buildCommand() {
        List command = new ArrayList<>();
        command.add("dpkg");
        command.add("-l");
        return command;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy