8000 GitHub - shelltips/checksum.sh: Verify every install script. Checksum.sh is a simple way to download, review, and verify install scripts.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Verify every install script. Checksum.sh is a simple way to download, review, and verify install scripts.

License

Notifications You must be signed in to change notification settings

shelltips/checksum.sh

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
8000

Repository files navigation

checksum.sh - Verify Every Install Script

checksum.sh

Checksum.sh is a simple way to download, review, and verify install scripts. If the checksum is OK the script will be printed to stdout, which can be piped to sh or elsewhere. If the checksum doesn't match it produces an error and nothing is piped. View the code on GitHub.

For example, to install Rust:

checksum https://sh.rustup.rs 8327fa6ce106d2a387fdd02cb95c3607193c2edb | sh

In contrast to Rust's usual installation which doesn't verify the checksum:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Install

Option 1: Define the checksum function directly

Paste the following into your command line to define the checksum function.

function checksum() {
  s=$(curl -fsSL "$1")
  if ! command -v shasum >/dev/null
  then
    shasum() { sha1sum "$@"; }
  fi
  c=$(printf %s\\n "$s" | shasum | awk '{print $1}')
  if [ "$c" = "$2" ]
  then
    printf %s\\n "$s"
  else
    echo "invalid checksum $c != $2" 1>&2;
  fi
  unset s
  unset c
}

Option 2: Download the script

Alternatively, you can download, review and verify the checksum.sh script:

curl -O https://checksum.sh/checksum.sh
cat checksum.sh
echo "26f0b74833d2b98c72c09dcb46f10eab18ac57a3  checksum.sh" | shasum -c

If everything is OK, you can source the script which will define the checksum function.

source checksum.sh

Use

To download and verify a script pass the URL and the CHECKSUM:

checksum <URL> <CHECKSUM>

The script will be printed out by default so you can inspect it.

If you're happy with it, you can pipe the script to sh to execute it:

checksum <URL> <CHECKSUM> | sh

If you just want to calculate the checksum for a URL you can omit the CHECKSUM:

checksum <URL>

Examples

Note: If any of these install scripts have changed these commands will error because the checksum will be invalid.

Install Rust

checksum https://sh.rustup.rs 8327fa6ce106d2a387fdd02cb95c3607193c2edb | sh

Install Cape

checksum https://raw.githubusercontent.com/capeprivacy/cli/main/install.sh 2309498bc07fbca42d421f696a605da15d99d939 | sh

Install Nitrogen

checksum https://raw.githubusercontent.com/capeprivacy/nitrogen/main/install.sh 8012d9e1d1420942f0ae6955fc99c790d52e9c3e | sh

Install Nix

checksum https://nixos.org/nix/install 84b31e0093aaa169c1f580c2fbe2397d059d1983 | sh

Install Deno

checksum https://deno.land/install.sh 57a4d67e64d2a7204541b9e131cedb289a79e834 | sh

About

Verify every install script. Checksum.sh is a simple way to download, review, and verify install scripts.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%
0