-
-
Save sitedata/a5bc8c924bc9e994369329e7c07ce941 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