$ZIP_NEW_LINE

Sets the character to be used as the end-of-line when writing to zip files.

$ZIP_NEW_LINE {=} Option

Arguments

Options for end-of-line character
Option Meaning
CR Store end-of-line as carriage return (1310)
LF Store end-of-line as line feed (1010)
CRLF Store end-of-line as carriage return (1310) plus line feed (1010)

Defaults

Assignment file: client assignment files
Section: [SETTINGS]
Default value: Value of $FILE_NEW_LINE, if defined.

Description

$ZIP_NEW_LINE allows you to specify the exact character that is stored as end-of-line when writing to zip archives. If it is not specified, the value of $FILE_NEW_LINE is used.

If $FILE_NEW_LINE is not specified, the native end-of-line format is used. On Windows this is CRLF, that is, a carriage return followed by a line feed (decimal value 13 followed by decimal 10), to indicate end-of-line.

Related Topics