tgopher-validator - gopher-validator - Simple gopher menu validator.
(HTM) git clone git://bitreich.org/gopher-validator git://hg6vgqziawt5s4dj.onion/gopher-validator
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) LICENSE
---
tgopher-validator (169B)
---
1 #!/bin/sh
2 #
3 # See the LICENSE for licensing details.
4 #
5
6 result="$(sacc "$@" | grep "^!")" || printf "valid\n" && exit 0
7
8 printf "Errors found\n%s\n" "${result}"
9 exit 1
10