]> git.treefish.org Git - usetaglib.git/blobdiff - usetaglib.cpp
Extended help text.
[usetaglib.git] / usetaglib.cpp
index a616a2ee98fb09da30cfe402cc810a0ed11ee94b..7909009ca1895dc40cc37fd408b82129876317ab 100644 (file)
@@ -1,17 +1,18 @@
-/*
-  This program is free software: you can redistribute it and/or modify
-  it under the terms of the GNU General Public License as published by
-  the Free Software Foundation, either version 3 of the License, or
-  (at your option) any later version.
-  
-  This program is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-  
-  You should have received a copy of the GNU General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>. 
-*/
+/* Copyright (C) 2015 Alexander Schmidt <alex@treefish.org>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>. 
+ */
 
 #include <iostream>
 #include <iomanip>
@@ -121,14 +122,25 @@ void printHelp ()
   cout << "-h, --help   Show this help" << endl;
   cout << endl;
   cout << "ACTIONS" << endl;
-  cout << setfill(' ') << setw(45) << left << "  -l, --list"
+  cout << setfill(' ') << setw(37) << left << "  -l, --list"
        << "list all tags (implicit if no action specified)"<< endl;
-  cout << setfill(' ') << setw(45) << left << "  -e, --erase=TAGNAME"
-       << "erase tag with name TAGNAME"<< endl;
-  cout << setfill(' ') << setw(45) << left << "  -r, --replace=TAGNAME=TAGVAL[=TAGVAL...]"
-       << "replace tag TAGNAME with list of values TAGVAL"<< endl;
-  cout << setfill(' ') << setw(45) << left << "  -i, --insert=TAGNAME=TAGVAL[=TAGVAL...]"
-       << "insert list of values TAGVAL for tag TAGNAME"<< endl;
+  cout << setfill(' ') << setw(37) << left << "  -a, --listaudio"
+       << "show audio information"<< endl;
+  cout << setfill(' ') << setw(37) << left << "  -e, --erase=TAGNAME"
+       << "erase tag TAGNAME"<< endl;
+  cout << setfill(' ') << setw(37) << left << "  -r, --replace=TAGNAME=TAGVALSPEC"
+       << "replace tag TAGNAME with value TAGVALSPEC"<< endl;
+  cout << setfill(' ') << setw(37) << left << "  -i, --insert=TAGNAME=TAGVALSPEC"
+       << "insert value TAGVALSPEC for tag TAGNAME"<< endl;
+  cout << endl;
+  cout << "TAGVALSPEC" << endl;
+  cout << "  a list of values separated by '=': val1=val2=val3..." << endl;
+  cout << endl;
+  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;
 }
   
 int main(int argc, char *argv[])
@@ -195,9 +207,14 @@ int main(int argc, char *argv[])
         }
     }
 
+  if ( optind == argc ) {
+    printHelp();
+    return 0;
+  }
+  
   if (requestedActions.size() == 0)
     requestedActions.push_back( make_pair(LIST, "") );
-  
+        
   for(int i = optind; i < argc; i++) {
     cout << "******************** \"" << argv[i] << "\" ********************" << endl;
     TagLib::FileRef f(argv[i]);