I know when I want to remove all files, I simply perform
rm(list=ls(gse))
if I want to remove one file for example named "data" I can do
rm(data)
what if I have so many files and I want to remove everything but only keep one or two or few that I want ?