|
|
|
|
|
by namsral
3538 days ago
|
|
Read from an URL: vim <(curl -fsL https://news.ycombinator.com)
This creates a temporary file descriptor from the output of the invoked sub shell.Read standard input in a shell script: #!/usr/bin/env bash
cat <&0 > $(date +%s).txt
|
|