You can use simple command substitution: variable=`cat text.txt` echo $variable. Or in bash: variable=$(cat text.txt). Same with:
確定! 回上一頁