Skip to content Skip to main navigation Skip to footer

shell: Linux shell批量删除指定目录下的所有目录的编程思路

应用场景:某个目录中存放着许多软件的源码压缩包,在部署完这些软件后,一定会生成许多没用的临时目录,可以通过脚本的方式删除该目录下所有的目录。当这个目录中存在着一些特殊名字的目录时,例如这些目录中有Linux系统所不支持的特殊字符“/”(这些文件通常有可能是Windows系统所支持的)或有目录名中有空格,那批量删除这些目录就会变得困难。

问题分析与解决办法:

问题1.当前工作目录中有一些重要的目录可能不想被删除

解决办法:排除这些目录即可

问题2.需要考虑一些特殊的目录名称,诸如“test dir”,“2015/03/11-log”,“下载”

解决办法:利用inode消除用户命名空间所带来的特殊性

背景知识:

inode是index node或information node的缩写,是一种特殊的结构用于存放文件的基本信息,这些信息包括文件的所有者、类型、访问权限和存放在磁盘中实际数据的位置。inode存放在每一个文件系统的inode表(inode table)中。

Index or Information Node. This is a structure containing the basic information about a file such as owner, type, access permissions and pointers to the actual data on the disk. Inodes are stored in the per filesystem inode table and are referenced through inode numbers. — http://www.linux-tutorial.info/modules.php?name=MContent&obj=glossary&term=inode

如果Linux系统经常与Windows系统中的磁盘或文件进行交互,建议安装mtools,此工具能在不挂载Windows磁盘格式磁盘的情况下,进行读写等操作。

Summary     : Programs for accessing MS-DOS disks without mounting the disks

Description : Mtools is a collection of utilities for accessing MS-DOS files.

: Mtools allow you to read, write and move around MS-DOS filesystem    

: files (normally on MS-DOS floppy disks).  Mtools supports Windows95    

: style long file names, OS/2 XDF disks, and 2m disks    

:    

: Mtools should be installed if you need to use MS-DOS disks

shell实例(核心步骤):

#!/bin/bash
WORK_DIRECTORY_NAME=.
EXCLUDE_DIRECTORY_NAME=python
INODE_OF_EXCLUDE_DIRECTORY_NAME=$(ls -id $EXCLUDE_DIRECTORY_NAME |awk '{print $1}')
INODE_OF_CURRENT_DIRECTORY_NAME=$(ls -Fi $WORK_DIRECTORY_NAME | grep / | awk '{print $1}')
INODE_OF_REMOVE_DIRECTORY_NAME=$(echo $INODE_OF_CURRENT_DIRECTORY_NAME | sed "s/$INODE_OF_EXCLUDE_DIRECTORY_NAME//g>")
for INODE in $INODE_OF_REMOVE_DIRECTORY_NAME; do
    find $WORK_DIRECTORY_NAME -inum $INODE -exec rm -rf {} ;
done 

实际操作结果(仅演示效果不做具体操作):

shell: Linux shell批量删除指定目录下的所有目录的编程思路
shell: Linux shell批量删除指定目录下的所有目录的编程思路

–END–

原文:http://dgd2010.blog.51cto.com/1539422/1619310

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.