Only get the size from "du" command, not the folder names

10

3

I am doing an applescript that is supposed to set the size of an folder to an varible. This is the code so far:

set sizeVar to do shell script "du -skh -m /Users/JS_Admin/Desktop"

Output:

"4242   /Users/JS_Admin/Desktop"

The thing is that I only want the size in numbers, no space or directory location.

How do I do that?

DevRandom

Posted 2012-12-17T08:22:33.137

Reputation: 155

Answers

21

Specifying both -k and -m does not make sense: either you want 1-Mbyte or 1-Kbyte blocks. Also -h does not make sense in combination with -k and -m. Only the last one -m will be considered

You can use cut to remove anything after the space:

du -sm /Users/JS_Admin/Desktop | cut -f1

With -f you specify which field you need (in this case the first one).

Matteo

Posted 2012-12-17T08:22:33.137

Reputation: 6 553