Implement the `rm` CLI using JS ## Checklist - [x] remove one file - [x] remove multiple files - [x] force remove using -f - [ ] remove with verbose output using -v - [x] recursively remove multiple files/folders using -r - [x] remove files matching a pattern using * ## Notes - use Node's built-in glob for pattern matching ## References - [`rm` Command in Linux](https://www.geeksforgeeks.org/linux-unix/rm-command-linux-examples/)
Implement the
rmCLI using JSChecklist
Notes
References
rmCommand in Linux