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.
|
|
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
|
|||
|
|
|
|
If you surround a command with backticks -
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:
|
||||||
|
|
|
all you need to do is:
to store the number of files in the variable count |
||
|
|
|
|
or
They behave the same way |
||||
|