6 lines
96 B
Bash
Executable file
6 lines
96 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Reading stdin..."
|
|
read meh
|
|
echo "I read $meh"
|
|
echo "Exiting pipereader now..."
|