No description
Find a file
2019-04-13 22:40:43 -05:00
src use the env-var 'pathext' if it exists (this helps on windows systems) 2019-04-13 12:48:18 -04:00
tests Extract function into module and add test 2018-05-15 12:30:35 -05:00
.gitignore Initial commit - simple implementation 2018-05-10 11:57:51 -05:00
about.nimble using generic path separator to make it work on windows too 2019-04-13 12:22:16 -04:00
LICENSE Initial commit - simple implementation 2018-05-10 11:57:51 -05:00
README.md Fix location of README.md 2018-05-11 16:50:28 -05:00

about - Command line tool for finding information about programs

This is a simple tool for finding information about executables found in your PATH.

While useful, it was also my example project for learning nim which is an amazing, super easy to use, fast language.

Building

Compile with:

$ nimble build

You can then copy it to your path and you're set.

Running

Execute about to see the documentation. But you can expect something similar to this:

$ about python

Output:

/usr/bin/python
/usr/bin/python2.7

Options were added for searching history and not matching directory names.

Future work?

I'm thinking about:

  • Stats of program usage
  • Inspect process information given the name of the program
  • Support for regular expressions