- from: fs test: 'rm\s{1,}(-R|-r|-fR|-fr|-Rf|-rf)\s*(\*|\.{1,}|/)\s*$' description: "You are going to delete everything in the path." id: fs:recursively_delete filters: IsExists: "3" - from: fs test: mv\s{1,}([a-zA-Z0-9.!@/#$%^&*()']+)\s*/dev/null description: "The files will be discarded and destroyed." id: fs:move_to_dev_null filters: IsExists: "1" - from: fs test: .*>(.*) description: "The above command is used to flush the content of a file." filters: IsExists: "1" id: fs:flush_file_content - from: fs test: chmod\s{1,}(-R|--recursive)\s{1}(\*|\.{2,}|/) description: "Change permission to all root files can brake your some thinks like SSH keys." id: fs:recursively_chmod - from: fs test: find\s.*-delete description: "Did you -delete flag in the wrong order? find -delete going to delete all the file under your current path." id: fs:delete_find_files