From owner-freebsd-questions@FreeBSD.ORG Sat Dec 24 14:57:55 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3A6416A41F for ; Sat, 24 Dec 2005 14:57:55 +0000 (GMT) (envelope-from rjw@dynode.net) Received: from union.dynode.net (ppp173-2.lns1.per1.internode.on.net [150.101.173.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7D2E43D45 for ; Sat, 24 Dec 2005 14:57:53 +0000 (GMT) (envelope-from rjw@dynode.net) Received: from main.dynode.net (main.dynode.net [192.168.0.11]) by union.dynode.net (8.13.4/8.13.4) with ESMTP id jBOF3XqK042923 for ; Sat, 24 Dec 2005 23:03:33 +0800 (WST) (envelope-from rjw@main.dynode.net) Received: from main.dynode.net (localhost [127.0.0.1]) by main.dynode.net (8.13.4/8.13.3) with ESMTP id jBOEsvg9022195 for ; Sat, 24 Dec 2005 22:54:57 +0800 (WST) (envelope-from rjw@main.dynode.net) Received: (from rjw@localhost) by main.dynode.net (8.13.4/8.13.1/Submit) id jBOEsvqi022194 for freebsd-questions@freebsd.org; Sat, 24 Dec 2005 22:54:57 +0800 (WST) (envelope-from rjw) Date: Sat, 24 Dec 2005 22:54:57 +0800 From: "Russell J. Wood" To: freebsd-questions@freebsd.org Message-ID: <20051224145457.GC21970@main.dynode.net> Mail-Followup-To: freebsd-questions@freebsd.org References: <028c01c60899$7cf29910$210110ac@fortunato> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <028c01c60899$7cf29910$210110ac@fortunato> User-Agent: Mutt/1.4.2.1i Subject: Re: Two simple questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Dec 2005 14:57:55 -0000 On Sat, Dec 24, 2005 at 08:51:13AM -0600, Teilhard Knight wrote: > What is the command to see the hidden files and folders? And how to unhide > them? If you're referring to dot files, then the following will show them: ls -a If that is too tedious, then an alias in your shell's RC file can sort that out (e.g. for /bin/sh: alias ls='ls -a'). - Russell