Skip to content

Instantly share code, notes, and snippets.

@mklooss
Created May 5, 2021 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mklooss/7c4cab285178254241ffc9bb5d77e77d to your computer and use it in GitHub Desktop.
Save mklooss/7c4cab285178254241ffc9bb5d77e77d to your computer and use it in GitHub Desktop.
install grub to every device!
#!/bin/bash
find /dev/ -maxdepth 1 \( -name 'sd[a-z]' -o -name 'nvme[0-9]n[0-9]' \) -exec grub-install "{}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment