Last active
August 29, 2015 14:11
-
-
Save aceat64/82df3918b39a56c24470 to your computer and use it in GitHub Desktop.
Random new lines on output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$parser->addSubcommand('sharepoint', array( | |
'help' => __('Import from sharepoint csv'), | |
'parser' => array( | |
'description' => array( | |
"Use this command to import assets from a CSV file created by sharepoint.", | |
"The file argument is required for this command.", | |
"The following fields are required: serial number, asset tag, model, vendor | manufacturer, bundle id | service id", | |
), | |
'arguments' => array( | |
'file' => array( | |
'help' => __('File to import'), | |
'required' => true, | |
), | |
) | |
) | |
)); | |
?> | |
$ cake import sharepoint | |
Use this command to import assets from a CSV file created by | |
sharepoint. | |
The file argument is required for this command. | |
The | |
following fields are required: serial number, asset tag, model, vendor | | |
manufacturer, bundle id | service id | |
Usage: | |
cake import sharepoint [-h] [-v] [-q] <file> | |
Options: | |
--help, -h Display this help. | |
--verbose, -v Enable verbose output. | |
--quiet, -q Enable quiet output. | |
Arguments: | |
file File to import |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment