13 lines
220 B
Bash
Executable File
13 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## curl -v --http1.0 --data-binary @/etc/group --http1.1 http://127.0.0.1:9988/home/hyung-hwan/projects/hio/t/d.sh
|
|
|
|
echo "Content-Type: text/plain"
|
|
echo
|
|
|
|
while IFS= read -r x
|
|
do
|
|
echo "$x"
|
|
done
|
|
echo "<<EOF>>"
|