How can I remove all "name" files in all of my subdirectories on Linux

Remove all *.swp files underneath the current directory, use the find command in one of the following forms:spa find . -name \*.swp -type f -delete The -delete option means find will directly delete t
相关文章
相关标签/搜索