You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
eslopfer b75b93b83d docs(dir-info): fix typo 1 year ago
..
README.md docs(dir-info): fix typo 1 year ago

README.md

dir-info

Instructions

Create a script dir-info.sh that takes a directory path as input and calculates the total size of all the files in that directory and its subdirectories.

The script will output the size of the largest file, the size of the smallest file, and the average size of all the files in the directory.

The script will also output the name and size of all the files larger or equal than the average size and the name and size of all the files smaller than the average size.

Usage

Here is an example of how to use the script:

$ ./dir-info.sh
Enter directory path: .
Largest file: ./example1.tar (30000 bytes)
Smallest file: ./example2.sh (2 bytes)
Average file size: 1279 bytes
Files larger than average size (1279 bytes):
./example1.tar 30000
Files smaller than average size (1279 bytes):
./example3.sh 45
./example4 248
./example2.sh 2

The output should be formatted as in the example above.