[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: how to automatically put files on all /home/user directories
- From: Bret Hughes <bhughes elevating com>
- To: redhat-list redhat com
- Subject: Re: how to automatically put files on all /home/user directories
- Date: Mon Sep 2 21:03:01 2002
On Mon, 2002-09-02 at 19:53, smoke wrote:
> thanks,
>
> i can use that too! but i have another 500+ existing
> users, and it may take a bit of time to use "touch"
> for every /home/user directory... is there a way to do
> that? thank you! :)
>
Something like:
for user in $(ls /home); do touch /home/$user/newfilename; done
Should work
Bret
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]