On Jan 10, 2011, at 12:43 PM, [email protected] wrote: > Is there one single-line command I can execute that will list every file in > every directory on my FreeBSD box? I've been fussing with the ls and du > commands, but the output is never quite complete.
du -a / find / -type f # remove the "-type f" argument if you want every file, instead of just "normal" files Regards, -- -Chuck _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[email protected]"
