files and directories
Table of Contents
1. Creating
touch <file name> # Creates a file with <file name>
2. Deleting
2.1. Multiple deletions
To delete all the files with
.npy
extension in a directory and subdirectories usefind <directory path> -name "*.npy" -type f -delete