博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux之特殊的环境变量IFS以及如何删除带有空格的目录
阅读量:6775 次
发布时间:2019-06-26

本文共 1479 字,大约阅读时间需要 4 分钟。

1、IFS是什么?

Linux下有一个特殊的环境变量叫做IFS,叫做内部字段分隔符(internal field separator)。IFS环境变量定义了bash shell用户字段分隔符的一系列字符。默认情况下,bash shell会将空格当做字段分隔符。我这里的系统是Centos7系统。

但是往往我们不能仅仅以空格符来作为字段分隔符,有些情况下我们需要将分割符设置为换行符来满足我们的业务需求。

演示如下:

现在我创建了四个目录,其中一个目录带有空格。现在我想把一下子他们统统都删除掉。

[root@ELK-chaofeng test]# lschao  chao feng  chen  feng[root@ELK-chaofeng test]# lltotal 16drwxr-xr-x 2 root root 4096 Feb 14 11:57 chaodrwxr-xr-x 2 root root 4096 Feb 14 10:52 chao fengdrwxr-xr-x 2 root root 4096 Feb 14 11:57 chendrwxr-xr-x 2 root root 4096 Feb 14 11:57 feng

如何直接删除的话,会出现下面的情况:

[root@ELK-chaofeng test]# find . -type d../chao feng./chen./feng./chao[root@ELK-chaofeng test]# for dir in `find . -type d`; do echo ${dir} ;done../chaofeng./chen./feng./chao

上面红色背景的本来是一个目录,结果这里却显示成了两个目录,所以使用rm删除的话肯定是删除不掉的。(我这里使用echo来做演示而已,echo显示正确,那么rm也能顺利删除带有空格的目录)

此时我们就需要使用IFS来解决这个问题了。

[root@ELK-chaofeng test]# IFS=$'\n' && for dir in `find . -type d`; do echo ${dir} ;done../chao feng./chen./feng./chao

这个时候我们发现带有空格的目录可以完整显示了。这是正确的。那么现在我们就可以删除了。

[root@ELK-chaofeng test]# lltotal 20drwxr-xr-x 2 root root 4096 Feb 14 11:57 chaodrwxr-xr-x 2 root root 4096 Feb 14 10:52 chao fengdrwxr-xr-x 2 root root 4096 Feb 14 11:57 chendrwxr-xr-x 2 root root 4096 Feb 14 11:57 feng[root@ELK-chaofeng test]# IFS=$'\n' && for dir in `find . -type d`; do rm -rf ${dir} ;donerm: refusing to remove ‘.’ or ‘..’ directory: skipping ‘.’[root@ELK-chaofeng test]# ls

此时rm报错可以忽略。现在看来我们已经成功的结果了这个问题。

转载于:https://www.cnblogs.com/FengGeBlog/p/10373901.html

你可能感兴趣的文章
从思路开始 Java如何实现条件编译
查看>>
日本Systems Support公司推出UHF手持读取器,读取距离长达20m
查看>>
行业云激发商业再创新
查看>>
移动医疗的未来:新服务和新技术
查看>>
测者的性能测试手册:一分钟掌握LoadRunner关联函数应该放在那
查看>>
阿里云大数据认证——基于阿里云数加构建企业级数据分析平台-课堂笔记
查看>>
python sequence序列
查看>>
Git基础知识详解
查看>>
JavaScript 事件委托详解 | 掘金技术征文
查看>>
自定义表单自动填充样式
查看>>
基于 react, redux 最佳实践构建的 2048
查看>>
学习笔记: Swift 关于结构体与类的探索
查看>>
JS的原型和继承
查看>>
【避坑】初次接项目的血与泪,扎坑了老铁(二)
查看>>
莫空面试记2
查看>>
Redux源码了解一下
查看>>
读书笔记-Android中的广播机制
查看>>
深入理解ThreadLocal
查看>>
深圳APP开发婚恋社交App
查看>>
ES6 -- String 扩展方法解析
查看>>