Implement the `cp` CLI using JS ## Checklist - [x] copy a file - [x] copy files to a directory - [x] copy recursively using -r - [x] force copy a file using -f - [ ] copy files with verbose output using -v - [ ] copy a file and preserve timestamps using -p - [x] copy files matching a pattern using * ## Notes - use Node's built-in glob for pattern matching ## References - [cp Command in Linux](https://www.geeksforgeeks.org/linux-unix/cp-command-linux-examples/) - man for the `cp` command
Implement the
cpCLI using JSChecklist
Notes
References
cpcommand