1
vote
Problem with Bash output redirection
As Lewis Baumstark says, it doesn't like it that you're writing to the same filename.
This is because the shell opens up "file.txt" and truncates it to do the redirection before "cat file.t …
3
votes
Is it possible to simulate installation of Debian packages, still marking them installed?
You're probably best off hooking into one of the scripting interfaces that Debian has for their various package tools and writing your own simulator.
(Edit: I can't find dpkg-perl and dpkg- …
0
votes
Pitch identification in Linux
I'm unaware of any software package that has this built in. If you're interested in writing something like this, you'll want to look at …
1
vote
How to know if there is a (compiled in/kernel module) device driver controlling a device on a running linux?
lspci -n will give you PCI ids that you can search for on the linux kernel driver database. This will tell you which kernel options to enable. …
2
votes
ELF file headers
I'm fairly sure that a sufficiently complex ld script can do what you want. However, I have no idea how.
On the other hand, elfsh …
2
votes
Replacing a line in a csv file?
sed 's/,,,/replacement/' < old-file.csv > new-file.csv
optionally followed by
mv new-file.csv old-file.csv
…
