Skip to content

Instantly share code, notes, and snippets.

@adikari
Created December 8, 2017 02:06
Show Gist options
  • Save adikari/4bd4bcdfd09ac1f89681beb887e8aeed to your computer and use it in GitHub Desktop.
Save adikari/4bd4bcdfd09ac1f89681beb887e8aeed 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