toCommandLineShellGNU
lib.cli.toCommandLineShellGNU
Docs pulled from | This Revision | 4 days ago
Converts the given attributes into a single shell-escaped command-line string.
Similar to toCommandLineGNU, but returns a single escaped string instead of an array of arguments.
For further reference see: lib.cli.toCommandLineGNU
Noogle detected
Implementation
The following is the current implementation of this function.
toCommandLineShellGNU =
options: attrs: lib.escapeShellArgs (lib.cli.toCommandLineGNU options attrs);