Skip to content

Instantly share code, notes, and snippets.

@Cosmologist
Last active February 19, 2021 17:00
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 Cosmologist/220010ada31da7beed07a94fc76f79b9 to your computer and use it in GitHub Desktop.
Save Cosmologist/220010ada31da7beed07a94fc76f79b9 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Show running mode (UEFI or BIOS) of your system."
echo "@see https://askubuntu.com/a/947856"
echo ""
mode=$(test -d /sys/firmware/efi && echo UEFI || echo BIOS)
echo "System runnging in mode: $mode"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment