Domanda

Here under, I expected two back slashes, but get one,

$ awk '{$0=gensub(/\[/,"\\\\","g")}1' <(echo [)
\

sub works okay.

Thanks,

Eric J.

È stato utile?

Soluzione

The behavior is explained here: http://www.gnu.org/software/gawk/manual/gawk.html#Gory-Details

From that link it can be seen that the there is a difference in behavior depending upon

  • which version of awk you are using, and
  • if you use gensub() or sub()
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top