Add pwd utility and performance to cat

This commit is contained in:
joachimschmidt557 2019-03-28 12:15:55 +01:00
parent 049289f452
commit 2f6f90dce4
4 changed files with 23 additions and 5 deletions

7
pwd.nim Normal file
View file

@ -0,0 +1,7 @@
import os, cligen
import common
proc main() =
echo getCurrentDir()
dispatch(main, version=("version", nimbaseVersion))