A few pointers (just some constructive criticism). I haven't yet tried your
program; I'm unfamiliar with Pascal.

a) when packaging a program, package it such that it extracts into its own
folder and not into the current directory (this can be annoying if you don't
list the directory before un-taring.
b) distribute only the source in a .tar.gz file. Binaries should be
distributed in distribution-specific packages
c) I don't run binaries downloaded from an untrusted site (like yousendit) -
and neither should anybody else. You have no way of knowing whether you can
trust that content.
d) I'm unfamiliar with 'Lazarus' (which I think is the IDE you used?) -
Distribute software with a Makefile (the standard way) or with, say, a link
to the site of the IDE's documentation where we can figure out how to build
the source -- Because like I said, I won't run the untrusted binaries; and
I'd like the chance to review the source before running it.

That said, I'm not sure why you wouldn't just write a shell script:

#!/bin/bash
index=1
for file in *.mp3  ## You could substitute the command arguments here,
instead.
do
     mv $file $index-$file
     ((index += 1))
done

On Thu, Feb 11, 2010 at 10:49 PM, Dos-Man 64 <[email protected]> wrote:

> RNX is a file renaming assistant. It will assist you in naming files
> with a numeric digit on the front.  This is mostly useful for MP3
> players.
>
> For example:  The files a.mp3 and b.mp3
>
> can be renamed
>
>         1-a.mp3
>  and
>         2-b.mp3.
>
> RNX does not actually rename the files; it generates bash statements
> along the lines of
>
>     mv a.mp3 1-a.mp3
>     mv b.mp3 2-b.mp3
>
> I believe this program is finished, but additional testing would be
> appreciated.
>
>
> http://www.yousendit.com/transfer.php?action=batch_download&batch_id=S1VCanZqQ0M3bUJMWEE9PQ
>
> Dos-Man
> (author)
>
> --
> You received this message because you are subscribed to the Linux Users
> Group.
> To post a message, send email to [email protected]
> To unsubscribe, send email to [email protected]
> For more options, visit our group at
> http://groups.google.com/group/linuxusersgroup




-- 

          Daniel

-- 
You received this message because you are subscribed to the Linux Users Group.
To post a message, send email to [email protected]
To unsubscribe, send email to [email protected]
For more options, visit our group at 
http://groups.google.com/group/linuxusersgroup

Reply via email to