how to delete all files except one in ubuntu using command code example
Example: delete all the files without one in linux
# delete all except the filename
$ rm -v !("filename")
# delete all except the filename
$ rm -v !("filename")