Martin Gregorie wrote: > On Tue, 2010-02-09 at 23:44 -0600, vitamin wrote: >> InterestedParty wrote: >>> Besides from grepping my entire hard drive for occurances of wine, which files should I look into? >> >> Code: >> >> find ~/.config/ -name '*wine*' >> > I think you mean: > > <code> > > find ~/.config/ -name '*wine*' -print > > </code> That works too, but it's redundant because -print is the default when no other actions are specified. Chip