site-neo/awk/getsd.awk

8 lines
172 B
Awk
Raw Permalink Normal View History

2023-02-11 16:22:16 +00:00
#!/usr/bin/awk
BEGIN{FS="/";x=2}
2023-02-11 18:00:31 +00:00
function none() {print "main";exit}
NF==1{none()}
2023-02-11 16:22:16 +00:00
/\.\//{x++}
2023-02-11 18:00:31 +00:00
$x~/\.(txti|html|org|md)/{none()}
2023-04-03 20:27:57 +00:00
{if($x=="dnd")none();else {print $x;exit}}