Mailinglist Archive: opensuse (2886 mails)
| < Previous | Next > |
Re: [SLE] deleting files (basic)
- From: Marcel Broekman <m.broek@xxxxxxxxx>
- Date: Tue, 5 Feb 2002 20:01:42 +0100
- Message-id: <20020205185732.IAGV3138.amsfep15-int.chello.nl@there>
On Wednesday 6 February 2002 05:25, you wrote:
> Hi!
>
> Just a basic question. How do I delete multiple files in Linux.
> rm *.* didn't want to delete all the files (not at least those that
> wore "hiiden" .xxxx like). I had to feed one file at the time to get
> them deleted.
>
> Cheers!
>
> - tk
if you do rm *.* it doesn't remove the .something files because it
looks only for files that have something.something (characters before
the dot). if you want to lose the dotfiles just do:
rm .*
see also: man rm
cheers, Marcel
> Hi!
>
> Just a basic question. How do I delete multiple files in Linux.
> rm *.* didn't want to delete all the files (not at least those that
> wore "hiiden" .xxxx like). I had to feed one file at the time to get
> them deleted.
>
> Cheers!
>
> - tk
if you do rm *.* it doesn't remove the .something files because it
looks only for files that have something.something (characters before
the dot). if you want to lose the dotfiles just do:
rm .*
see also: man rm
cheers, Marcel
| < Previous | Next > |