vote up 3 vote down star

How do I truncate output in BASH?

For example, if I "du file.name" how do I just get the numeric value and nothing more?

later addition:
all solutions work perfectly. I chose to accept the most enlightning "cut" answer because I prefer the simplest approach in bash files others are supposed to be able to read.

flag

4 Answers

vote up 7 vote down check

If you know what the delimiters are then cut is your friend

du | cut -f1

Cut defaults to tab delimiters so in this case you are selecting the first field.

You can change delimiters: cut -d ' ' would use a space as a delimiter. (from Tomalak)

You can also select individual character positions or ranges:

ls | cut -c1-2
link|flag
You can add something like "cut -d ' ' -f 1-2", to point out how to change the characters cut uses as delimiters. – Tomalak Oct 27 '08 at 10:54
vote up 0 vote down

If you just want the number of bytes of a single file, use the -s operator.

SIZE=-s file.name

That gives you a different number than du, but I'm not sure how exactly you're using this.

This has the advantage of not having to run du, and having bash get the size of the file directly.

It's hard to answer questions like this in a vacuum, because we don't know how you're going to use the data. Knowing that might suggest an entirely different answer.

link|flag
In the original question he said that using du was just an example; your answer doesn't help with his question (although it may in fact be useful to him if his example wasn't just hypothetical) – Mark Baker Oct 27 '08 at 13:41
I don't read it as "du was just an example". – Andy Lester Oct 27 '08 at 14:58
How do I truncate output in BASH? For example, if I "du file.name"... – Ken Oct 27 '08 at 19:48
Yes, I read that. And I didn't interpret it as "du was just an example." – Andy Lester Oct 27 '08 at 22:35
I don't understand how this is used. What's the context? – Dennis Williamson Dec 3 at 5:29
vote up 9 vote down

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}'
link|flag
+1 If the delimiter could be any whitespace, then awk is the most robust solution (even if it's not as pretty as using cut). – Jeremy Michael Cantrell Oct 27 '08 at 14:45
vote up 6 vote down
du | cut -f 1
link|flag
beat me to it by 20 seconds :) – Ken Oct 27 '08 at 10:39
Beat me by 30 seconds :) I've deleted my duplicate answer and added an alternative answer instead. – Mark Baker Oct 27 '08 at 10:41
I'd prefer more information about delimiters and ranges since he was only using du as an example. Then I'll happily delete too :) – Ken Oct 27 '08 at 10:44
Can I just copy yours or do I have to invent my own? :-) – Tomalak Oct 27 '08 at 10:48
Please just copy if you think they are ok - if not invent your own – Ken Oct 27 '08 at 10:48
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.