💾 Archived View for perso.pw › blog › articles › 19.gmi captured on 2022-06-11 at 20:56:45. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-17)

➡️ Next capture (2023-01-29)

-=-=-=-=-=-=-

Redirect stdin into a variable in shell

NIL=> Comment on Mastodon

If you want to write a script reading stdin and put it into a

variable, there is an very easy way to procede :

#!/bin/sh

var=`cat`

echo $var

That's all