RosettaCodeData/Task/Create-a-file/AWK/create-a-file.awk

9 lines
157 B
Awk
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
BEGIN {
printf "" > "output.txt"
2015-11-18 06:14:39 +00:00
close("output.txt")
2013-04-10 16:57:12 -07:00
printf "" > "/output.txt"
2015-11-18 06:14:39 +00:00
close("/output.txt")
system("mkdir docs")
system("mkdir /docs")
2013-04-10 16:57:12 -07:00
}