mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 13:51:47 +00:00
5 lines
121 B
Bash
5 lines
121 B
Bash
#!/usr/bin/env bash
|
|
# On Linux/Cygwin, $(</dev/stdin) doesn't work when stdin is a socket.
|
|
myvar=$(cat)
|
|
echo -e "$myvar"
|