count script #!/bin/sh numOfArgs=$# if [ $numOfArgs -ne 1 ]; then echo -e "Usage: \nbash $0 dirForCount" exit -1 fi # args ROOTDIR=$1 # core part find $ROOTDIR -maxdepth 1 -type d | sort | while read dir; do count=$(find "$dir" -type f | wc -l) echo "$dir: $count" done implement
Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: mysql join query (left join, right join, inner join)
>>: How to import js configuration file on Vue server
Create table & create index create table tbl1...
This article shares the specific code of jQuery t...
<br />Navigation design is one of the main t...
Table of contents Preface What are constructible ...
Today I wanted to change the mysql port, but I fo...
(1) Introduction: clipboard.js is a lightweight J...
Preface: In project development, some business ta...
drop table Drop directly deletes table informatio...
1. Download the MySQL installation package First ...
mysql 8.0.22 winx64 installation and configuratio...
/***************** * proc file system************...
The root account of mysql, I usually use localhos...
reason The mysql version that nacos's pom dep...
Preface In our daily development process, sorting...
Abstract: Whether at work or in an interview, opt...