shellScriptLineToArguments function

List<String> shellScriptLineToArguments(
  1. String command
)

Convert a string command to arguments. only if not a comment

Implementation

List<String> shellScriptLineToArguments(String command) =>
    shell_utils.shellSplit(command);