10 lines
103 B
Plaintext
10 lines
103 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
while read -r d; do
|
||
|
if [[ ! -d $d ]]; then
|
||
|
rm -f "${d%.d/}"
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
dconf update
|