adjust usage text

This commit is contained in:
Thomas Müller 2013-08-02 21:23:26 +02:00
parent a7a05b321a
commit 5e1a775016
1 changed files with 2 additions and 2 deletions

View File

@ -6,9 +6,9 @@ if (!OC::$CLI) {
} }
if (count($argv) !== 2) { if (count($argv) !== 2) {
echo "Usage:" . PHP_EOL; echo "Usage:" . PHP_EOL;
echo " php scanFiles.php <user_id>" . PHP_EOL; echo " files:scan <user_id>" . PHP_EOL;
echo " will rescan all files of the given user" . PHP_EOL; echo " will rescan all files of the given user" . PHP_EOL;
echo " php scanFiles.php --all" . PHP_EOL; echo " files:scan --all" . PHP_EOL;
echo " will rescan all files of all known users" . PHP_EOL; echo " will rescan all files of all known users" . PHP_EOL;
return; return;
} }