diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-02 21:23:26 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-02 21:23:26 +0200 |
commit | 5e1a775016ef9eca6d05c0503996650688e39575 (patch) | |
tree | 75f445f15054b053d16390eb14b243924b474a2b | |
parent | a7a05b321afd0085bd0e8c068c95e654d229e27c (diff) | |
download | nextcloud-server-5e1a775016ef9eca6d05c0503996650688e39575.tar.gz nextcloud-server-5e1a775016ef9eca6d05c0503996650688e39575.zip |
adjust usage text
-rw-r--r-- | apps/files/console/scan.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/console/scan.php b/apps/files/console/scan.php index 118e586aea3..b9eccfb9934 100644 --- a/apps/files/console/scan.php +++ b/apps/files/console/scan.php @@ -6,9 +6,9 @@ if (!OC::$CLI) { } if (count($argv) !== 2) { 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 " php scanFiles.php --all" . PHP_EOL; + echo " files:scan --all" . PHP_EOL; echo " will rescan all files of all known users" . PHP_EOL; return; } |