The gnu-coreutils tag has no wiki summary.
6
votes
2answers
3k 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 ...
4
votes
1answer
206 views
How to get all fields in outer join with Unix join?
Suppose that I have two files, en.csv and sp.csv, each containing exactly two comma-separated records:
en.csv:
1,dog,red,car
3,cat,white,boat
sp.csv:
2,conejo,gris,tren
3,gato,blanco,bote
If I ...
3
votes
4answers
1k views
Where can I find source code for Linux core commands?
I'd like to read the actual code which the linux commands are written with. I've gained some experience using them and now I think it's time to interact with my machine at a deeper level. I've found ...
8
votes
4answers
516 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
1answer
4k 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 ...