devops-exercises/topics/shell/solutions/empty_files.md

21 lines
264 B
Markdown
Raw Normal View History

2021-11-07 16:54:06 +01:00
## Empty Files
### Objectives
1. 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
```