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 …
6
votes
Redirect command to input of another in Python
It can be done. As of Python 2.5, however, this mechanism is Linux-specific and not portable:
import subprocess
import sys
file = sys.argv[1]
p1 = subprocess.Popen(['hg', 'cat', fi …
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 …
13
votes
Problem with Bash output redirection
Redirecting from a file through a pipeline back to the same file is unsafe; if file.txt is overwritten by the shell when setting up the last stage of the pipeline before tail …
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 …
1
vote
Error handling in BASH
Use a trap!
TEMPFILES=( )
function cleanup() {
rm -f "${TEMPFILES[@]}"
}
trap cleanup 0
function error() {
local PARENT_LINENO="$1"
local MESSAGE="$2"
local CODE="${3:-1}"
…
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 …
5
votes
how to escape white space in bash loop list
First, don't do it that way. The best approach is to use find -exec properly:
find test -type d -exec echo '{}' +
The next best approach is to use an …
3
votes
How can I have a terminal where error messages are coloured, similarly as here?
IPython will syntax-highlight Python code and stacktraces, as in the example you give (which is, in fact, a Python stack trace).
…
3
votes
Insert Command into Bash Shell
You can do this, but only if the shell runs as a subprocess of your Python program; you can't feed content into the stdin of your parent process. (If you could, UNIX would have a host of related se …
1
vote
Bash: Recursively adding subdirectories to the path
The following Does The Right Thing, including trimming hidden directories and their children and properly handling names with newlines or other whitespace:
export PATH="${PATH}$(fin …
8
votes
How do I test if a variable is a number in bash?
One approach is to use a regular expression, like so:
if ! [[ "$yournumber" =~ ^[0-9]+$ ]] ; then
exec >&2; echo "error: Not a number"; exit 1
fi
If the …
13
votes
Get current working directory name in Bash Script
No need for basename, and especially no need for a subshell running pwd (which adds an extra, and expensive, fork operation) …
1
vote
Hide a bash function internals..
Run type env at your bash prompt, and provide the output; for me, this indicates that env is /usr/bin/env, a separate executable; such executables have no way to know anyt …
