Interface IBashCommandFormatter
Describes a type implementation that can render a nicely formatted Bash command.
Namespace: Neon.SSH
Assembly: Neon.SSH.dll
Syntax
public interface IBashCommandFormatter
Methods
ToBash(string)
Renders a nicely formatted Bash command. Note that the string returned may include multipe lines with continuation characters.
Declaration
string ToBash(string comment = null)
Parameters
Type | Name | Description |
---|---|---|
string | comment | The optional comment to be included in the output. |
Returns
Type | Description |
---|---|
string | The formatted Bash command. |