On Sat, 01 Oct 2005 16:35:26 +0200, bsnottum wrote: > Hallo! > > Is there a command I can use in order to list all files and folders owned > by a spcified user on a fc2 server? > > Thanks! > > Bjorn find . -uid n -print will find the files in the current directory whose user id is n. To see a user's id: id some_user