7 ms·
Nice tool. I would love access to the API once its public to write a bash script that allows you to search from terminal. Suggestion: - statistics: top 5 ports
by aam1r 15y ago
Nice tool. I would love access to the API once its public to write a bash script that allows you to search from terminal.
Suggestion:
- statistics: top 5 ports show only 2 distinct ports. it would be better IMO to show 5 distinct ports
- reidrac 15y agoI'm confused. If you're on a terminal using bash, I guess you're in a POSIX system... why not using grep $PORT /etc/services?
- iSloth 15y agoThat reminds me of another place to find some more ports to add, completely forgot about that file :)
- deno 15y ago> Nice tool. I would love access to the API once its public to write a bash script that allows you to search from terminal. > cat /etc/services | grep " 80/tcp" http 80/tcp www www-http # WorldWideWeb HTTP
- reidrac 15y agoCat is useless in that line: $ grep " 80/tcp" /etc/services http 80/tcp www www-http # WorldWideWeb HTTP http://partmaps.org/era/unix/award.html#cat http://partmaps.org/era/unix/award.html#cat
- deno 15y agoIt's not useless. With cat, I don't have to remember the order of grep's arguments.
- reidrac 15y agoInteresting. With grep you need at least something to search (one argument), don't you? If you don't provide another argument to say "where", it reads from standard input (as most unix commands). But you already know that because you're using it that way with cat. How can you don't remember then the order of the arguments?
- deno 15y agoThere: > {1} With grep you need at least something to search (one argument), don't you? {2} If you don't provide another argument to say "where", it reads from standard input (as most unix commands). And ‘find’ is the other way around. I just don't see any reason to not to use cat. It's not like grep will use fseek() to speed anything up, if I call it with file URI instead.
- iSloth 15y agoI too would cat the file first, just get in the habit of doing it.
- iSloth 15y agoThanks! distint ports are defiantly on the to do list. The API is actually live using JSON and someone has written an Android App for it already, just need to document it and make it public.
- iSloth 15y agoDistinct and clickable "Top 5 Ports" has now been added :)