(no title)
namsral | 9 years ago
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
No comments yet.