12 lines
221 B
Bash
12 lines
221 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
function main {
|
||
|
find / -type f -name times -exec sed -iE 's/LASTBUILD=.*/LASTBUILD=0/' {} \;
|
||
|
}
|
||
|
|
||
|
main "${@}"
|