7 lines
115 B
Bash
Executable File
7 lines
115 B
Bash
Executable File
#!/bin/sh
|
|
|
|
OLD_CFG=/etc/config/config_mode
|
|
NEW_CFG=/etc/config/configmode
|
|
|
|
[ -f $OLD_CFG ] && mv $OLD_CFG $NEW_CFG
|