Tagged Questions
The gnu-coreutils tag has no wiki summary.
8
votes
4answers
362 views
Less gets keyboard input from stderr?
I'm taking a look at the code to the 'less' utility, specifically how it gets keyboard input. Interestingly, on line 80 of ttyin.c, it sets the file descriptor to read from:
/*
* Try ...
5
votes
6answers
1k views
Binary “tail” a file
I would guess most people on this site are familiar with tail, if not - it provides a "follow" mode that as text is appended to the file tail will dump those characters out to the terminal.
What I am ...
4
votes
1answer
2k views
top command's CPU usage calculation
I am trying to use GNU coreutil top's formula for calculating CPU usages in percentage.
But top is using some half_total, to calculate the percentage, which is adding 0.5 to the percentage.
In ...
2
votes
3answers
270 views
Using ed to manipulate files matched by find
Following the bash-hackers wiki's recommendation, I want to edit files using ed.
In particular I want to do the following with ed instead of sed:
find . -type f -exec sed -i -e 's/a/b/g' {} \;
I ...
1
vote
1answer
70 views
sorting with coreutil's sort
I am trying to sort a table based on the first value from smallest to largest with the gnu-coreutils sort command.
My table looks something like this:
file.txt
100,0.8,0.323, ... some more data
...
1
vote
2answers
719 views
Calculate the total space consumption of specific files in unix terminal
I have a folder containing .tcb and .tch files. I need to know what the size of all .tcb files together, respectively of all .tch files is.
I did like this:
1) I created a temp folder and then:
mv ...
1
vote
1answer
70 views
Structured output between linux commands
I am looking for any papers, implementations, or just general ideas about common linux/unix utilities writing/reading structured output/input.
The structured output could be anything, xml, jsopn, ...
1
vote
1answer
475 views
Forcing the order of output fields from cut command
I want to do something like this:
cat abcd.txt | cut -f 2,1
and I want the order to be 2 and then 1 in the output. On the machine I am testing (FreeBSD 6), this is not happening (its printing in ...
0
votes
2answers
39 views
Echo text on multiple file using find
I'd like to add some simple text into some files. Specifically, I do this on Linux lpfc drivers:
ls -1 /sys/class/scsi_host/host* | awk -F '@' '{system("echo 0x0 > "$1"/lpfc_log_verbose")}'
But ...
0
votes
0answers
104 views
coreutils make failed
I need to do some business on coreutils as a part of a project for school, but I am stuck right at the beginning of README-hacking, I have done all things and they were successful until make. It ...
0
votes
2answers
156 views
What's the most efficient way to get a sorted, human-readable du output on Mac OS 10.6?
I used to have this sweet alias for du I called dusort that would print out a human-readable list of sizes for the top-level subdirectories+files sorted by size. It was like a mini-filelight for mac ...