mirror of
https://https.git.savannah.gnu.org/git/m4.git
synced 2026-01-28 02:15:00 +00:00
* AUTHORS: Add copyright. * ChangeLog: Likewise. * README: Likewise. Require automake 1.9b or later. * HACKING: New file. * README-alpha: Add copyright. * THANKS: Likewise. Update. * doc/STYLE: Add copyright, and tweak for changed directories. * modules/README: Add copyright, and tweak for libtool version. * examples/COPYING: New file. * examples/WWW/COPYING: Likewise. * examples/WWW/m4lib/COPYING: Likewise. * modules/shadow.m4: Add copyright. * modules/perl.m4: Likewise. * modules/modtest.m4: Likewise. * modules/stdlib.m4: Likewise. * modules/time.m4: Likewise. * modules/time2.m4: Likewise. * po/Makevars: Likewise. * tests/iso8859.m4: Likewise. * tests/m4.in: Likewise. * NEWS: Add (C) to copyright. * TODO: Likewise. * m4/system_.h: Likewise. * tests/atlocal.in: Likewise. * tests/builtins.at: Likewise. * tests/freeze.at: Likewise. * tests/generate.awk: Likewise. * tests/macros.at: Likewise. * tests/modules.at: L
45 lines
908 B
Plaintext
45 lines
908 B
Plaintext
dnl Copyright (C) 2006 Free Software Foundation
|
|
dnl This file is free software; the Free Software Foundation
|
|
dnl gives unlimited permission to copy and/or distribute it
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
load(`stdlib')
|
|
|
|
`getenv - 'getenv(PATH)
|
|
|
|
setenv TEST=??? setenv(`TEST', `???')
|
|
getenv TEST - getenv(`TEST')
|
|
|
|
setenv TEST=Second test setenv(`TEST', `Second test')
|
|
getenv TEST - getenv(`TEST')
|
|
|
|
unsetenv TEST unsetenv(`TEST')
|
|
getenv TEST - getenv(`TEST')
|
|
|
|
|
|
|
|
`getlogin - 'getlogin
|
|
`getcwd = 'getcwd
|
|
`getpid - 'getpid
|
|
`getppid - 'getppid
|
|
|
|
syscmd(`ps ajx|grep m4')
|
|
|
|
`getuid - 'getuid
|
|
|
|
user root - getpwnam(`root')
|
|
user sync - getpwnam(`sync')
|
|
user rene - getpwnam(`rene')
|
|
|
|
uid 5 - getpwuid(5)
|
|
me - getpwuid(getuid)
|
|
|
|
`hostname = 'hostname
|
|
|
|
`rand' - rand,rand,rand,rand
|
|
`srand' srand
|
|
`rand' - rand,rand,rand,rand
|
|
`srand' srand
|
|
`rand' - rand,rand,rand,rand
|
|
|
|
`uname - ' uname
|