7 lines
63 B
Bash
Executable File
7 lines
63 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for d in /srv/*/; do
|
|
cd $d
|
|
vol-backup.sh
|
|
done
|