简体   繁体   中英

Writing a Bash script to remove all zero length ordinary files in the directory and all sub-directories without using -find

This is what I have but I am pretty sure this only removes the files in the directory and its direct subdirectories. How would I target all subdirectories?

    #!/bin/bash
    currDir="$PWD" #the current working directory is set as the default

    if [ $# -eq 1 ] #if the number of command line args is 1
    then
         currDir=$1 #use the specified directory
    fi

    for file in $currDir/*; #iterate through all the files in the directory
    do
          if [ -s $file ] #if file exists and is not empty
          then
               continue #do not remove
          else
               rm -rf $file #if it exists and is empty, remove the file
          fi
          for file2 in $currDir/**/*; #remove empty files from subdirectory 
          do
              if [ -s $file2 ]
              then
                   continue
              else
                   rm -rf $file2
              fi
          done
     done

You can issue:

find /path/to/your/directory -size 0 -print -delete

This will delete all the files in a directory (and below) that are size zero.

Would you pleaae try the following:

#!/bin/bash

traverse() {
    local file
    for file in "$1"/*; do
        if [[ -d $file ]]; then
            traverse "$file"
        elif [[ -f $file && ! -s $file ]]; then
            echo "size zero: $file"
            # if the result is desirable, replace the line above with:
            # rm -f -- "$file"
        fi
    done
}

traverse .      # or set to your target directory

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM