5 lines
137 B
Plaintext
5 lines
137 B
Plaintext
|
#!/bin/sh
|
||
|
nodevs=$(< /proc/filesystems awk '$1 == "nodev" { print $2 }')
|
||
|
renice +19 -p $$ >/dev/null 2>&1
|
||
|
/usr/bin/updatedb -f "$nodevs"
|