Fish is a smart and user-friendly command line (like bash or zsh). This is how you can instal Fish on MacOS and make your default shell.
Note that you need the https://brew.sh/ package manager installed on your machine.
brew install fish
Fish is a smart and user-friendly command line (like bash or zsh). This is how you can instal Fish on MacOS and make your default shell.
Note that you need the https://brew.sh/ package manager installed on your machine.
brew install fish
| function computeMD5(str) { | |
| var digest = Utilities.computeDigest(Utilities.DigestAlgorithm.MD5, str); | |
| return Utilities.base64Encode(digest); | |
| } | |
| function computeSHA1(str) { | |
| var digest = Utilities.computeDigest(Utilities.DigestAlgorithm.SHA_1, str); | |
| return Utilities.base64Encode(digest); | |
| } |