7 lines
60 B
Bash
Executable File
7 lines
60 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for dir in /srv/*/
|
|
cd $dir
|
|
vol-backup
|
|
done
|