6 lines
78 B
Bash
Executable File
6 lines
78 B
Bash
Executable File
#!/usr/bin/bash
|
|
find ~/backup_lvm.d/ -type l | while read file
|
|
do
|
|
$file
|
|
done
|