You've already forked devops-exercises
mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2025-07-12 23:50:28 +02:00
Name it instead "topics" so it won't be strange if some topics included "exercises" directory.
247 B
247 B
Files Size
Objectives
- Print the name and size of every file and directory in current path
Note: use at least one for loop!
Solution
#!/usr/bin/env bash
for i in $(ls -S1); do
echo $i: $(du -sh "$i" | cut -f1)
done