New answers tagged text
-1
2
Using PHP you can try the following command:
$ echo oil+and+gas | php -r 'echo urldecode(fgets(STDIN));'
oil and gas
or just:
php -r 'echo urldecode("oil+and+gas");'
Use -R for multiple line input.
0
I faced the same issue. After beating my head over it for a long time, I discovered the cause: locale. I assume you have locale set to something other than en_US. Try this as root (for any amd-catalyst version):
LANG="en_US" /bin/bash ./amd-catalyst-13.4-linux-x86.x86_64.run
from the directory in which the driver is. Fixed the issue for me.
1
Try TranscriberAG, unfortunately, it needs compiling manually, though.
Top 50 recent answers are included