On 3/13/07, Paul <[EMAIL PROTECTED]> wrote:
On Tue, March 13, 2007 2:38 am, yitzle wrote:
> Where you doing "rm -f $file" or `rm -f $file`?
> You need to use "backticks" for system commands.
If memory serves me, back ticks are only needed inside a system command
for UNIX commands and regular tic
On Tue, March 13, 2007 2:38 am, yitzle wrote:
> Where you doing "rm -f $file" or `rm -f $file`?
> You need to use "backticks" for system commands.
If memory serves me, back ticks are only needed inside a system command
for UNIX commands and regular ticks specifying the system command within
the Pe
On Tue, 2007-03-13 at 02:29 -0400, Mathew wrote:
> I recently forgot about the unlink function and had been trying to
> remove files using the less efficient system call to run "rm -f
> /path/to/files". I found, however, that this didn't work at all.
>
> I've since replaced it with unlink and get
Hello,
1. Check that the "rm" command is not mapped to "rm -i" or
similar alias.
if so them the "rm -f" command from system() command will not
work.
Thanx
Madan
Mathew wrote:
I recently forgot about the unlink function and had been trying to
remove files using the less effic
Where you doing "rm -f $file" or `rm -f $file`?
You need to use "backticks" for system commands.
On 3/13/07, Mathew <[EMAIL PROTECTED]> wrote:
I recently forgot about the unlink function and had been trying to
remove files using the less efficient system call to run "rm -f
/path/to/files". I fo
>
>I recently forgot about the unlink function and had been trying to
>remove files using the less efficient system call to run "rm -f
>/path/to/files". I found, however, that this didn't work at all.
>
>I've since replaced it with unlink and get the results one can expect to
>get so it isn't a m
I recently forgot about the unlink function and had been trying to
remove files using the less efficient system call to run "rm -f
/path/to/files". I found, however, that this didn't work at all.
I've since replaced it with unlink and get the results one can expect to
get so it isn't a matter of