Has anyone any idea why this doesn't work ?
while read file ; do php -r 'urlencode($fil e);' ; done > file
I've also tried
cat file | php -r 'urlencode($0); ' > file
no luck there either ??
while read file ; do php -r 'urlencode($fil e);' ; done > file
I've also tried
cat file | php -r 'urlencode($0); ' > file
no luck there either ??
Comment