Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 264 Bytes

empty_files.md

File metadata and controls

20 lines (16 loc) · 264 Bytes

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