msgbartop
A cronological documentation test project, nothing serious, really!
msgbarbottom

12 Apr 07 A bash script to copy one file to multiple users

Posted by

#!/bin/bash

for dir in /home/*
do
    cp /path/to/file "$dir"
done

Tags:

Leave a Comment

You must be logged in to post a comment.