]> git.treefish.org Git - usetaglib.git/commitdiff
Extended help text.
authorAlexander Schmidt <alex@treefish.org>
Fri, 6 Feb 2015 18:35:31 +0000 (19:35 +0100)
committerAlexander Schmidt <alex@treefish.org>
Fri, 6 Feb 2015 18:35:31 +0000 (19:35 +0100)
usetaglib.cpp

index e0d2fbfccf61068ba62f6a6594a6f4dad898d346..e54b09e625ce5eaec11bd6985109f2af81f7f663 100644 (file)
@@ -115,6 +115,8 @@ void printHelp ()
   cout << "-h, --help   Show this help" << endl;
   cout << endl;
   cout << "ACTIONS" << endl;
+  cout << "  If multiple actions are specified they are executed in given order." << endl;
+  cout << endl;
   cout << setfill(' ') << setw(37) << left << "  -l, --list"
        << "list all tags (implicit if no action specified)"<< endl;
   cout << setfill(' ') << setw(37) << left << "  -a, --listaudio"
@@ -132,8 +134,8 @@ void printHelp ()
   cout << "EXAMPLES" << endl;
   cout << "  usetaglib file.ogg" << endl;
   cout << "  usetaglib -e ALBUM file.flac" << endl;
-  cout << "  usetaglib -i ARTIST=Horst=Hubert file.mp3" << endl;
-  cout << "  usetaglib -r ARTIST=Horst file.ogg" << endl;
+  cout << "  usetaglib -r \"ALBUM=New Album\" -i ARTIST=Horst=Hubert file.mp3" << endl;
+  cout << "  usetaglib -r ARTIST=Horst -l file1.ogg file2.mp3" << endl;
   cout << "  usetaglib -i \"ALBUMARTIST=Horst und Hubert\" file.ogg" << endl;
   cout << "  usetaglib --insert=\"ALBUMARTIST=Horst und Hubert\" file.ogg" << endl;
 }