Files
svr/usr/bin/brc
T

11 lines
149 B
Bash
Raw Normal View History

2026-01-23 08:55:18 +01:00
#!/bin/bash
set -e
2026-02-23 18:27:06 +01:00
MACHINE_DIR="/svr"
2026-01-23 08:55:18 +01:00
F_NAME=".bashrc";
cd "$MACHINE_DIR/usr/home";
commit_if_modified "$F_NAME"
cp -f $F_NAME /home/$F_NAME;
cd -