This is a CLI Utilities library for Node.js.
Time spent: 15 hours
- Completed Requireds marked with
[x] - Walkthrough Gif embedded in README
- README
Time spent:includes the number of hours spent on the assignment -
echo.jsprints the first argument to stdout -
cat.jsprints the contents of the first argument to stdout -
touch.jsupdates the modified date of the first argument -
ls.jsrecursively lists the files of the first argument -
mkdir.jscreate a directory at the first argument -
rm.jsdeletes any file or directory at the first argument
-
ln.jscreates a symlink from the second argument to the first argument -
grep.jsprints lines matching the first argument in the files matching the second argument -
grep.jssupports a regex as the second arguments
./echo.js 'hi there'
./cat.js touch.js
./touch.js hi.txt
./ls.js ./
.ls.js ./ -R./mkdir.js f1/f2/f3
./rm.js hi.txt
./ln.js echo.js echo_clone.js
./grep.js console \.js
