aboutsummaryrefslogtreecommitdiffstats
path: root/test/readdir0.awk
blob: 54306f108bb6fb13bde958cd8e8b81f1e16db1eb (plain)
1
2
3
4
5
6
7
8
9
{
	ino = $1
	name = $NF
	type = substr($2, 1, 1)
	if (type == "-")
		type = "f"

	printf "%s/%s/%s\n", ino, name, type
}