Это не работает, например:

set var=<text.txt

Это можно сделать так в BASH:

#!/bin/bash
variable=$(cat text.txt)
echo $variable

0