aboutsummaryrefslogtreecommitdiffstats
path: root/test/closebad.awk
blob: 83133ae86afc8d6b524bbf63c679b2c3f5f84b76 (plain)
1
2
3
4
5
6
7
BEGIN {
	f = "/no/such/file/1"
	print (getline junk < f)
	print close(f)
	f = "/no/such/file/2"
	print close(f)
}