summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-02 21:23:26 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-02 21:23:26 +0200
commit5e1a775016ef9eca6d05c0503996650688e39575 (patch)
tree75f445f15054b053d16390eb14b243924b474a2b
parenta7a05b321afd0085bd0e8c068c95e654d229e27c (diff)
downloadnextcloud-server-5e1a775016ef9eca6d05c0503996650688e39575.tar.gz
nextcloud-server-5e1a775016ef9eca6d05c0503996650688e39575.zip
adjust usage text
-rw-r--r--apps/files/console/scan.php4
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;
}