Code Monkey home page Code Monkey logo

checksum.sh's Introduction

checksum.sh - Verify Every Install Script

checksum.sh

GitHub top language GitHub code size in bytes GitHub license GitHub repo stars

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() {
  local s
  s=$(curl -fsSL "$1")
  local h
  if command -v shasum >/dev/null ; then
    h=shasum
  else
    h=sha1sum
  fi
  if [ ! "$2" ] ; then
    printf %s\\n "$s" | "$h" | awk '{print $1}'
    return 1;
  fi
  printf %s\\n "$s" | "$h" --check --status <(printf '%s  -\n' "$2") || {
    echo "checksum failed" >&2;
    return 1;
  }
  printf %s\\n "$s"
}

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 "df260dd53581e6e30c0afbe32b80db6b0bec2d07  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 6282be0e90f8f9e041a4f714039e61bf8c03ad85 | 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 f403add95bde19aeba87f8e63e67b09af671d804 | sh

Install Nix

checksum https://nixos.org/nix/install 885201bc4da10dbd264778fbbdb4887e5304682a | sh

Install Deno

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

Install Bun

checksum https://bun.sh/install 86c651cf7aac32cceb3688f0a4e026776c965b49 | bash

Install Haskell

checksum https://get-ghcup.haskell.org d1fe43ba1316fd89170c68d042dc2c6ac3979965 | sh

Install Homebrew

checksum https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh 112869ebf4129eba57cac6217d4cd1b21344f274 | bash

Install Just

checksum https://just.systems/install.sh 1f253751970e65ea59fee43e0f740e84f8eb5d43 | bash -s -- --to DEST

Contributors & Thanks

Checksum.sh is maintained by @gavinuhma.

Thank you to those who have contributued code and ideas through pull requests, issues, and comments!

checksum.sh's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

checksum.sh's Issues

Add a shorthand `checksum install rust` ?

It would be convenient to have a shorthand like checksum install rust. A couple options to do this..

A. Hardcode the checksums in the .sh file.
B. Have a separate file with a list of names and checksums that can be used as a lookup.

This probably beats referencing the checksums manually in the readme.

Not sure this is a good idea, so leaving it here for any comments.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.