What is Nostr?
Τρομοκρατιστής ✭ /
npub1py5…a94e
2025-02-12 12:19:59

Τρομοκρατιστής ✭ on Nostr: Typical #AWK command / utility template ``` #!/usr/bin/awk -f BEGIN { for ( i = 1; i ...

Typical #AWK command / utility template
```
#!/usr/bin/awk -f

BEGIN {
for ( i = 1; i < ARGC; i ++ ) {
if ( ARGV[i] ~ /^-/ ) {
if ( ARGV[i] ~ /^(-h)|(--help)$/ )
printf("option [%s]\n", ARGV[i]);
else
printf("unknown option [%s]\n", ARGV[i]);
}
else
printf("parameter [%s]\n", ARGV[i]);
}
}
```
Author Public Key
npub1py5vzq5us6kxmw5l2uvgj8c77alp3wc8vgjs8k95yt80dxw3cjvqh8a94e