The gnu-coreutils tag has no wiki summary.
14
votes
4answers
1k views
Display two files side by side
How can 2 unsorted text files of different lengths be display side by side (in columns) in a shell
Given one.txt and two.txt:
$ cat one.txt
apple
pear
longer line than the last two
last line
$ cat ...
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 ...
7
votes
1answer
135 views
Why does sort -u treat U+2161 and U+2162 as the same character?
I have a file with two characters each on its own line:
$ cat roman
Ⅱ
Ⅲ
nut when I sort this file with sort -u, only one line is displayed:
$ sort -u roman
Ⅱ
Ⅱ is code-point U+2161 and Ⅲ is ...
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 ...
5
votes
6answers
2k 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 ...
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 ...
4
votes
2answers
4k 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 ...
4
votes
2answers
110 views
using tac to read a file in reverse
I am fairly new to UNIX coding and I have a file that I need to read in reverse line by line. The file has sections of code within {}. Then I need to run an awk script with this reversed file as the ...
4
votes
1answer
207 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 ...
3
votes
3answers
136 views
How to find set difference of two files?
I have two files A and B. I want to find all the lines in A that are not in B. What's the fastest way to do this in bash/using standard linux utilities? Here's what I tried so far:
for line in `cat ...
3
votes
2answers
124 views
find, rounding and daystart
Suppose a file is created as follows:
$ touch -d "00:00:00 today" stamp
Why the following command does not find it?
$ find -type f -daystart -mtime 0
The following command does find this file
$ ...
2
votes
3answers
68 views
Why the bash I compiled(3.8M) is bigger the one my system provided(937K)?
I have download the bash shell version 4.2 form here: http://ftp.gnu.org/gnu/bash/, and then compiled it by my self using the following command:
./configure
make
But the bash I compiled is much ...
2
votes
3answers
388 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 ...
2
votes
2answers
412 views
What's the most efficient way to get a sorted, human-readable du output on Mac OS 10.6? [closed]
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 ...
1
vote
1answer
2k views
How to trim the output of the UNIX who Command?
I am working with an idea using the unix who command. As we all know, there does not seem to be a direct switch that gives just the username and line (terminal) info without the date and screen ...
1
vote
1answer
91 views
How to find the package to which a certain file belongs in a Debian-based distribution?
Where are the Gnulib files in Linux?
I want use lib like safe-read, mbchar, etc... in my project but I do not find them on my Ubuntu 11.10 machine.
1
vote
3answers
272 views
clear screen when the file is truncated while using `tail -f`
I'm using tail -f to print the content of a continuously changing file. When the file is truncated it shows up like this:
blah (old)..
blah more (old)..
tail: file.out: file truncated
blah..
blah ...
1
vote
2answers
490 views
Using find with -L option
I have this:
mylink -> myfile
When I do:
find -L . -name 'mylink'
I get:
./mylink
I don't understand why this is so, given this from the man page:
-L : Follow symbolic links. When find ...
1
vote
1answer
100 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
0answers
54 views
Generate sort executable from coreutils using gcc with -ggdb switch
I have the coreutils-8.19 source files with me. I want to do a source level analysis on the GNU sort utility using the perf record & report option to identify possible areas in the source sort.c ...
1
vote
1answer
81 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
...
0
votes
3answers
74 views
Find include guard typos in C++ with gnu coreutils
Below is a typo for a C++ include guard. Both should read _MYFILE_H_.
#ifndef _MYFILE_H_
#define _MYFLIE_H_
How would you suggest searching a bunch of header files for a typo like this using GNU ...
0
votes
2answers
319 views
move folder contents recursive into nested folder
I don't expected that this will be a problem. Because I thought the coreutils support these things and then, that a dirty combination of cp ls and rm would be enough.
However, this was not the case ...
0
votes
1answer
69 views
ln has unexpected behavior when using a wildcard
I am planning on filing a bug on coreutils for this, as this behavior is unexpected, and there isn't any practical use for it in the real world... Although it did make me chuckle at first, as I never ...
0
votes
2answers
728 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
1answer
896 views
listing all processes in iOS 5.0.1
How could one go about viewing all the processes in an ssh session to my (jailbroken)iphone? I'm currently able to ssh in, I have bash installed, core utilities installed, shell-cmds package installed ...
0
votes
1answer
10 views
What's the inverse of “date +%s”?
Is there something I can substitute for ?? to make this work?
> date +%s
1368817693
> date -d ?? 1368817693
Fri May 17...
0
votes
1answer
44 views
What are the inputs to the KLEE core-utils experiment discussed in the paper?
I'm having trouble reproducing the results in Figure 7 of this paper:
http://www.stanford.edu/~engler/klee-osdi-2008.pdf
Specifically, I tried to test the core util's "tac" command doing so:
...
0
votes
1answer
48 views
Mediafire timestamp?
If I download a file from
mediafire.com
and do
stat -c %y test.txt
The date and time just comes out to whenever I downloaded the file. Is there a way to download from mediafire and retain the ...
0
votes
0answers
18 views
How to install only selected source functions?
I tried to follow the tutorial in this link (http://mattbsoftware.blogspot.com/2009/04/colerful-ls-dircolors-on-mac.html) to install dircolors to enable a better color scheme of the terminal.
I've ...
0
votes
1answer
25 views
How to specify a lib directory when configuring coreutils
I'm trying to figure out how to compile coreutils 8.20 (specifically sort) and get it to use my 64 bit libs instead of the 32 bit libs.
My 32 bit libraries are in: /lib
My 64 bit libraries are in: ...
0
votes
1answer
102 views
msysgit: Git bash misses the `seq` command. It there an alternative shell scripts?
I use seq a lot in my simulation shell scripts. The Git bash does not provide it, thus I am looking for an alternative.
Is there an alternative to seq that is part of the commands supported by the ...
0
votes
0answers
16 views
What is tac good for? [closed]
I've recently read through gnu coreutils and found tac.
Are there any (perhaps historical) reasons for the existence of tac?
What would be an use case?
0
votes
0answers
256 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 ...
-1
votes
1answer
32 views
Sorting numeric columns based on another numeric column
I have the following file:
BTA Pos KLD
4 79.7011 5.7711028907
4 79.6231 5.7083918219
5 20.9112 4.5559494707
5 50.7354 4.2495580809
5 112.645 4.0936819092
6 72.8212 ...

