• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-gawk/
1#!@GAWK@ -f
2# Example for use of GNU gettext.
3# This file is in the public domain.
4#
5# Source code of the GNU awk program.
6
7BEGIN {
8  TEXTDOMAIN = "hello-gawk"
9  bindtextdomain ("@localedir@")
10
11  print _"Hello, world!"
12  printf _"This program is running as process number %d.", PROCINFO["pid"]
13  print
14}
15