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