Skip to main content
added 4 characters in body
Source Link
Gilles 'SO- stop being evil'
  • 838.7k
  • 198
  • 1.8k
  • 2.2k

The quote wrapping is escaping the special characters, so they are being treated as literals. To elicit the behaviour you are looking for, you would have to do

eval $nnn"$nnn"
eval $duper"$duper"

The quote wrapping is escaping the special characters, so they are being treated as literals. To elicit the behaviour you are looking for, you would have to do

eval $nnn
eval $duper

The quote wrapping is escaping the special characters, so they are being treated as literals. To elicit the behaviour you are looking for, you would have to do

eval "$nnn"
eval "$duper"
Source Link
bxm
  • 5k
  • 1
  • 21
  • 24

The quote wrapping is escaping the special characters, so they are being treated as literals. To elicit the behaviour you are looking for, you would have to do

eval $nnn
eval $duper