NetBSD/tests/util/awk/d_tolower.awk
jmmv fbaeb3b2ac Add the util tests developed as part of the atfify GSoC 2008 project.
Initial done work by Lukasz Strzygowsky and reorganization of files done
by me.
2009-02-13 05:19:51 +00:00

6 lines
91 B
Awk

# $NetBSD: d_tolower.awk,v 1.1 2009/02/13 05:19:51 jmmv Exp $
END {
print tolower($0);
}