2 --- rnmp3.c.orig 2000-01-14 13:55:56.000000000 +0000
3 +++ rnmp3.c 2004-01-02 16:06:58.000000000 +0000
10 -Usage - pipe names into rnmp3. (\"find | rnmp3 args\")
11 - If first parameter starts with -, the following string will be removed
12 - from all names if they exist (enclose spaces with \"\")
13 - If any other commands are entered, commands will not be executed,
17 - rnmp3 test Don't rename, just show changes
18 - rnmp3 -\"string\" Rename after removing \"string\"
19 - rnmp3 -\"string\" test Don't rename after removing \"string\"
20 - rnmp3 --test test Rename after removing \"-test\"
22 - Before - \"1-This is my (file name) man.mp3\"
23 - After - \"01-ThisIsMy-FileName-Man.mp3\"
27 - find . -type f | rnmp3\n", VERSION);
28 + printf("rnmp3 %s:\n\n", VERSION);
29 + printf("Usage - pipe names into rnmp3. (\"find | rnmp3 args\")\n");
30 + printf(" If first parameter starts with -, the following string will be removed\n");
31 + printf(" from all names if they exist (enclose spaces with \"\")\n");
32 + printf(" If any other commands are entered, commands will not be executed,\n");
33 + printf(" just printed\n\n");
35 + printf(" rnmp3 Rename\n");
36 + printf(" rnmp3 test Don't rename, just show changes\n");
37 + printf(" rnmp3 -\"string\" Rename after removing \"string\"\n");
38 + printf(" rnmp3 -\"string\" test Don't rename after removing \"string\"\n");
39 + printf(" rnmp3 --test test Rename after removing \"-test\"\n\n");
41 + printf(" Before - \"1-This is my (file name) man.mp3\"\n");
42 + printf(" After - \"01-ThisIsMy-FileName-Man.mp3\"\n\n");
44 + printf("Suggested uses:\n");
45 + printf(" find . | rnmp3\n");
46 + printf(" find . -type f | rnmp3\n");