0
votes
3answers
1k views
Setting up pipelines reading from named pipes without blocking in bash
I'm looking to call a subprocess with a file descriptor opened to a given pipe such that the open() call does not hang waiting for the other side of the pipe to receive a connection.
To dem …
8
votes
What is a good equivalent to Perl lists in bash?
bash (unlike POSIX sh) supports arrays:
fruits=(apple orange kiwi "dried mango")
for fruit in "${fruits[@]}"; do
echo "${fruit}"
done
This has the advantage that …
0
votes
Maximum number of inodes in a directory?
Maximum directory size is filesystem-dependent, and thus the exact limit varies. However, having very large directories is a bad practice.
You should consider making your directories smalle …
0
votes
Setting up pipelines reading from named pipes without blocking in bash
Opening the FD read/write rather than read-only when setting up the pipeline prevents blocking.
To be a bit more specific:
$ mkfifo /tmp/foobar.pipe
$ some_program --command …
5
votes
How do you handle the “Too many files” problem when working in Bash?
In newer versions of findutils, find can do the work of xargs (including the glomming behavior, such that only as many grep processes as needed are used):
find ../path -exec grep fo …
2
votes
