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.
264 B
264 B
Empty Files
Objectives
- Write a script to remove all the empty files in a given directory (including nested directories)
Solution
#! /bin/bash
for x in *
do
if [ -s $x ]
then
continue
else
rm -rf $x
fi
done