8 lines
130 B
Bash
8 lines
130 B
Bash
#!/bin/bash
|
|
|
|
SHELL="/bin/fish"
|
|
|
|
if grep "${SHELL}" "$BPM_ROOT"/etc/shells; then
|
|
sed -i "s|${SHELL}|d" "$BPM_ROOT"/etc/shells
|
|
fi
|