FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

Args Module

Helper functions for proper command line parsing

Functions and values

Function or value Description

fromWindowsCommandLine cmd

Full Usage: fromWindowsCommandLine cmd

Parameters:
    cmd : string - The command to construct

Returns: string[]

Read a windows command line string into its arguments

cmd : string

The command to construct

Returns: string[]

toLinuxShellCommandLine args

Full Usage: toLinuxShellCommandLine args

Parameters:
    args : seq<string> - The arguments list

Returns: string

Escape the given argument list according to a unix shell (bash)

args : seq<string>

The arguments list

Returns: string

toWindowsCommandLine args

Full Usage: toWindowsCommandLine args

Parameters:
    args : seq<string> - The arguments list

Returns: string

Convert the given argument list to a conforming windows command line string, escapes parameter in quotes if needed (currently always but this might change).

args : seq<string>

The arguments list

Returns: string