32 lines
412 B
Go
32 lines
412 B
Go
|
package posadka
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
// Replace `a` with `b` in a given file at `path`. This function is non-atomic
|
||
|
// so be careful with crashing.
|
||
|
func ReplaceInFile(path string, a, b []byte) error {
|
||
|
data, err := os.ReadFile(path)
|
||
|
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
data = bytes.Replace(
|
||
|
data,
|
||
|
a,
|
||
|
b,
|
||
|
1,
|
||
|
)
|
||
|
|
||
|
err = os.WriteFile(path, data, 0644)
|
||
|
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|