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?