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