how to generate unique string

前端 未结 4 552
广开言路
广开言路 2020-12-20 18:29

I want to transform an XML document into HTML. Some XML elements have links to others documents like:


In the H

4条回答
  •  花落未央
    2020-11-21 01:18

    It seems that the good-old ENVIRON awk built-in hash is not mentioned at all. An example of its usage:

    $ X=Solaris awk 'BEGIN{print ENVIRON["X"], ENVIRON["TERM"]}'
    Solaris rxvt
    

提交回复
热议问题