Skip to content

Instantly share code, notes, and snippets.

@sitedata
Forked from adikari/reload_bash_shell.sh
Created September 18, 2024 04:56
Show Gist options
  • Save sitedata/a5bc8c924bc9e994369329e7c07ce941 to your computer and use it in GitHub Desktop.
Save sitedata/a5bc8c924bc9e994369329e7c07ce941 to your computer and use it in GitHub Desktop.
reload shell from bash and continue
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