At least in bash pattern substitution following quotes are often used: $' ' For example ${arr[@]/%/$'\n\n\n'} prints three newline characters after each array “arr” item. Are those some sort of special quotes? How are they called? Where are they used besides bash pattern substitution?
At least in bash pattern substitution following quotes are often used: $’ ‘ For
Share
ANSI-C Quoting
For example:
You’ll get
11characters with newline in the middle.They give you the same result.