func killAll()

in Sources/SourceParsingFramework/Utilities/ProcessUtilities.swift [31:46]


    func killAll(_ processName: String) -> Bool

    /// Execute the given process with given arguments and return the
    /// standard output as a `String`.
    ///
    /// - parameter path: The path to the process to execute.
    /// - parameter process: The name of the process to execute.
    /// - parameter arguments: The list of arguments to supply to the
    /// process.
    /// - returns: The standard output content as a single `String` and
    /// the standard error content as a single `String`.
    func execute(path: String, processName: String, withArguments arguments: [String]) -> (output: String, error: String)
}

/// A set of utility functions for running processes.
public class ProcessUtilitiesImpl: ProcessUtilities {