forked from varia/distribusi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
187 B
11 lines
187 B
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
#distribusi automounter!
|
||
|
#requires usbmount
|
||
|
|
||
|
if grep -qs '/media/usb' /proc/mounts; then
|
||
|
grep '/media/usb' | while read -r line;
|
||
|
do
|
||
|
figlet "$line"
|
||
|
done
|
||
|
fi
|