mirror of
https://github.com/xxh/xxh
synced 2024-11-23 12:23:04 +00:00
15 lines
222 B
Bash
15 lines
222 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for user_dir in /home/*; do
|
||
|
username=`basename $user_dir`
|
||
|
echo Prepare $user_dir
|
||
|
|
||
|
cd $user_dir
|
||
|
|
||
|
cp /xxh/xde/keys/id_rsa .
|
||
|
chown $username:$username id_rsa
|
||
|
chmod 0600 id_rsa
|
||
|
done
|
||
|
|
||
|
tail -f /dev/null
|