R
rmurthy60
I tried doing the following to remove the ./ from the file listed
below. I am able to do it in sed but the problem is you cannot use
qx'sed -e"s?\([ /]\)\./?\1?g" $filist'. It does not allow the use of
$filist, but if I hard code the file name in place of $filist. It
works.
next if s?\([ /]\)\./?\1?g;
For some reason it is not removing the ./ from the file. Any
suggestions are
welcome.
The file is in this format
a b ./dsfj/dfl/dksl ./ksdfl/dsld
c d ./sds/dsl/dksld ./kdf/ksd/ksdk
Thanks
Raghu
below. I am able to do it in sed but the problem is you cannot use
qx'sed -e"s?\([ /]\)\./?\1?g" $filist'. It does not allow the use of
$filist, but if I hard code the file name in place of $filist. It
works.
next if s?\([ /]\)\./?\1?g;
For some reason it is not removing the ./ from the file. Any
suggestions are
welcome.
The file is in this format
a b ./dsfj/dfl/dksl ./ksdfl/dsld
c d ./sds/dsl/dksld ./kdf/ksd/ksdk
Thanks
Raghu