Changes between Initial Version and Version 1 of Ticket #2784, comment 3
- Timestamp:
- 03/23/2017 11:13:48 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2784, comment 3
initial v1 1 I have come across this bug because my execute script is failing on Linux, because Ampersands are being escaped to ^^^&. 1 I have come across this bug because my execute script is failing on Linux, because Ampersands are being escaped to 2 {{{ 3 ^^^& 4 }}} 5 2 6 3 7 Steps to reproduce: 4 8 5 9 1. Write bash script: 6 10 {{{ 7 11 #!/bin/bash 8 12 exec 1> >(logger -s -t $(basename $0)) 2>&1 9 13 export name="$1" 10 14 echo $name 11 15 }}} 12 16 2. Set script as execute script 13 17 3. Trigger script for a torrent with an ampersand in the name 14 18 15 The syslog shows that the ampersand in the name has been converted to ^^^& 19 The syslog shows that the ampersand in the name has been converted to 20 {{{ 21 ^^^& 22 }}} 16 23 17 Can this change be rolled back/modified so it doesn't impact non-Windows users .24 Can this change be rolled back/modified so it doesn't impact non-Windows users?