mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 05:10:29 -04:00
Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight
43 lines
1.7 KiB
C
43 lines
1.7 KiB
C
--- rnmp3.c.orig 2001-06-13 20:13:19 UTC
|
|
+++ rnmp3.c
|
|
@@ -256,25 +256,21 @@ int main(int argc, char **argv)
|
|
|
|
void usage()
|
|
{
|
|
- printf("rnmp3 %s:
|
|
-
|
|
-Usage - pipe names into rnmp3. (\"find | rnmp3 args\")
|
|
- If first parameter starts with -, the following string will be removed
|
|
- from all names if they exist (enclose spaces with \"\")
|
|
- If any other commands are entered, commands will not be executed,
|
|
- just printed
|
|
-
|
|
- rnmp3 Rename
|
|
- rnmp3 test Don't rename, just show changes
|
|
- rnmp3 -\"string\" Rename after removing \"string\"
|
|
- rnmp3 -\"string\" test Don't rename after removing \"string\"
|
|
- rnmp3 --test test Rename after removing \"-test\"
|
|
-
|
|
- Before - \"1-This is my (file name) man.mp3\"
|
|
- After - \"01-ThisIsMy-FileName-Man.mp3\"
|
|
-
|
|
-Suggested uses:
|
|
- find . | rnmp3
|
|
+ printf("rnmp3 %s:\n\n\
|
|
+Usage - pipe names into rnmp3. (\"find | rnmp3 args\")\n\
|
|
+ If first parameter starts with -, the following string will be removed\n\
|
|
+ from all names if they exist (enclose spaces with \"\")\n\
|
|
+ If any other commands are entered, commands will not be executed,\n\
|
|
+ just printed\n\n\
|
|
+ rnmp3 Rename\n\
|
|
+ rnmp3 test Don't rename, just show changes\n\
|
|
+ rnmp3 -\"string\" Rename after removing \"string\"\n\
|
|
+ rnmp3 -\"string\" test Don't rename after removing \"string\"\n\
|
|
+ rnmp3 --test test Rename after removing \"-test\"\n\n\
|
|
+ Before - \"1-This is my (file name) man.mp3\"\n\
|
|
+ After - \"01-ThisIsMy-FileName-Man.mp3\"\n\n\
|
|
+Suggested uses:\n\
|
|
+ find . | rnmp3\n\
|
|
find . -type f | rnmp3\n", VERSION);
|
|
|
|
exit(0);
|