💾 Archived View for perso.pw › blog › articles › 19.gmi captured on 2024-06-16 at 12:44:19. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2024-03-21)
-=-=-=-=-=-=-
NILIf 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