mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 05:12:29 +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"
|