1
vote
How do I make bash reverse-search work in Terminal.app without it displaying garbled output?
Not sure whether this is the problem here, but a very common cause of a messed up screen in bash (with any terminal emulator, not just Terminal.app) is the window being resized.
Bash will r …
2
votes
Find all storage devices attached to a Linux machine
Modern linux systems will normally only have entries in /dev for devices that exist, so going through hda* and sda* as you suggest would work fairly well.
Otherwise, there may be something …
0
votes
Find all storage devices attached to a Linux machine
libsysfs does look potentially useful, but not directly from a shell script. There's a program that comes with it called systool which will do what you want, though it may be easier to just look in …
9
votes
truncate output in BASH
I'd recommend cut, as others have said. But another alternative that is sometimes useful because it allows any whitespace as separators, is to use awk:
du file.name | awk '{print $1 …
0
votes
what’s a more concise way of finding text in a set of files?
You say that you like the output of your method (using find) better. The only difference I can see between them is that grepping multiple files will put the filename on the front.
You can …
0
votes
String contains in bash
I'd use grep, and not use the [ command, just do
if grep -q foo <<<$string; then
echo "It's there"
fi
The -q option makes grep not output anything, as …
