Created
December 8, 2017 02:06
-
-
Save adikari/4bd4bcdfd09ac1f89681beb887e8aeed to your computer and use it in GitHub Desktop.
reload shell from bash and continue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -f /var/run/rebooting-for-updates ]; then | |
# start from where we left off on reboot | |
sed -i '/bash/d' ~/.zshrc | |
sudo rm -f /var/run/rebooting-for-updates | |
echo "continuing after shell reload.." | |
else | |
echo "running script for the first time" | |
# Preparation for reboot | |
script="bash /reload_bash_shell.sh" | |
echo "$script" >> ~/.zshrc | |
sudo touch /var/run/rebooting-for-updates | |
exec zsh | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment