9 lines
142 B
Bash
9 lines
142 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# testing inpiut/output file descriptor
|
||
|
|
||
|
exec 3<> test
|
||
|
read line <&3
|
||
|
echo "Read: $line"
|
||
|
echo "This is the test line" >&3
|