From: Alexander Schmidt Date: Fri, 6 Feb 2015 18:35:31 +0000 (+0100) Subject: Extended help text. X-Git-Url: http://git.treefish.org/~alex/usetaglib.git/commitdiff_plain/3f5ca8b570c4a46224f3d99bfbc0a6a520b9c28c Extended help text. --- diff --git a/usetaglib.cpp b/usetaglib.cpp index e0d2fbf..e54b09e 100644 --- a/usetaglib.cpp +++ b/usetaglib.cpp @@ -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; }