vote up 0 vote down star

I want to work on the files generated by the split command. How do I count these files?

I am moving these to a separate directory, so it would help if someone could tell me how to store the output of ls -1|wc -l to a variable in a shell script.

flag

50% accept rate

3 Answers

vote up 1 vote down check

If you surround a command with backticks - `command ` - the command is run and output replaces the quoted text. This is called Command Substitution. So you can store the output of a command in a variable like so:

COUNT=`ls -1|wc -l`

However, you don't have to store the output in a variable. You can use the backticks in the middle of another command. For example:

echo Split made `ls -1|wc -l` files.
link|flag
Duh! you are half a minute ahead of me. You need to put in the ending back tick ` – Hai Vu Sep 24 at 15:55
Answers with equal votes are no longer displayed in time order so it doesn't matter who's first any more. But thanks anyway. :-) – Dave Webb Sep 24 at 15:59
I could ve sworn I was trying the exact same thing and it wasnt working. Thanks! – Kapsh Sep 24 at 16:04
vote up 1 vote down

all you need to do is:

count=$(ls -l | wc -l)

to store the number of files in the variable count

link|flag
vote up 2 vote down
myvar=`ls -1|wc -l`

or

myvar=$(ls -1|wc -l)

They behave the same way

link|flag
$() is preferred. – Dennis Williamson Sep 24 at 16:08
@Dennis: I agree, however, there are some old borne shell that does not understand $(..) – Hai Vu Sep 26 at 2:29

Your Answer

Get an OpenID
or

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