```sh
var = sha256sum file
```
Runs SHA-256 hash on the provided file returns the hashed value in hex.
The file to hash
The hash value in hex or false in case of error.
The result will be in lowercase, same as with the core utils with the same name.
```sh
hashed = sha256sum ./myfile.txt
```