Search Results

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 …
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 …
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 …
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) …
8
votes

display message on command “cd production”

Don't do it that way. :) What you really want to know isn't whether the user just got into the 'production' directory via a cd command; what you really want to know is if you're modifying p …
5
votes

awk ‘{print $9}’ the last ls -l column including any spaces in the file name.

A better solution: Don't attempt to parse ls output in the first place. The official wiki of the irc.freenode.org #bash channel has an explanation of why this is a Bad Idea, and what altern …