View the number of files in each subfolder of a specified folder in Linux

View the number of files in each subfolder of a specified folder in Linux

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

$ bash count.sh benchmark
benchmark: 2317
benchmark/0: 20
benchmark/1: 891
benchmark/2: 65
benchmark/3: 13
benchmark/4: 1328

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:
  • Linux shell command counts the value of a column after deduplication
  • Tips for viewing History records and adding timestamps in Linux
  • Several ways to run Python programs in the Linux background
  • Creating and executing Linux shell scripts
  • Python uses paramiko to operate Linux
  • Android's implementation method of executing shell scripts in the Linux terminal to directly print the log of the currently running app
  • How to remotely batch execute Linux command programs using pyqt
  • Use of Zabbix Api in Linux shell environment
  • How to recover accidentally deleted messages files in Linux
  • Shell command to realize the method of merging multiple files in the current directory into one file

<<:  mysql join query (left join, right join, inner join)

>>:  How to import js configuration file on Vue server

Recommend

How to use indexes to optimize MySQL ORDER BY statements

Create table & create index create table tbl1...

jQuery implements simple pop-up window effect

This article shares the specific code of jQuery t...

Simplify complex website navigation

<br />Navigation design is one of the main t...

This article teaches you how to import CSS like JS modules

Table of contents Preface What are constructible ...

Solve the problem of no my.cnf file in /etc when installing mysql on Linux

Today I wanted to change the mysql port, but I fo...

Detailed explanation of JavaScript clipboard usage

(1) Introduction: clipboard.js is a lightweight J...

How to query date and time in mysql

Preface: In project development, some business ta...

Three ways to delete a table in MySQL (summary)

drop table Drop directly deletes table informatio...

Detailed tutorial on installing mysql8.0.22 on Alibaba Cloud centos7

1. Download the MySQL installation package First ...

MySQL 8.0.22 winx64 installation and configuration graphic tutorial

mysql 8.0.22 winx64 installation and configuratio...

Linux kernel device driver proc file system notes

/***************** * proc file system************...

How to allow external network access to mysql and modify mysql account password

The root account of mysql, I usually use localhos...

Solution to nacos not being able to connect to mysql

reason The mysql version that nacos's pom dep...

Detailed example of sorting function field() in MySQL

Preface In our daily development process, sorting...

A brief discussion on Yahoo's 35 rules for front-end optimization

Abstract: Whether at work or in an interview, opt...