awk behaviour?
- Reply: Michael Butler via freebsd-current : "Re: awk behaviour?"
- Reply: Warner Losh : "Re: awk behaviour?"
- Reply: Michael Gmelin : "Re: awk behaviour?"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 28 Jul 2021 17:29:20 UTC
I tripped over this while trying to build a local release .. imb@toshi:/home/imb> pkg --version | awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3}' 10001 imb@toshi:/home/imb> pkg --version 1.17.1 Is this expected? imb