⑴最近有网友在书写shell脚本的时候,发现使用cd命令无法进入xargs管道输出的目录,出现报错的情况,那么遇到这种情况可以使用修改命令来解决,一起来了解下具体的操作吧。
⑵[roottest nagiosclient_db]# ls -ltr
⑶-rw-r--r--。 root root Mar : nrpe-..tar.gz
⑷-rw-r--r--。 root root Mar : nagios-plugins-...tar.gz
⑸drwxrwxrwx. root Mar : nagios-plugins-..
⑹drwxrwxr-x. Mar : nrpe-.
⑺获取需要的目录:
⑻[roottest nagiosclient_db]# ls | egrep ‘nrpe-[-]。[-]+.$’
⑼使用管道进入指定的目录:
⑽[roottest nagiosclient_db]# ls | egrep ‘nrpe-[-]。[-]+.$’ | xargs ls -ld | xargs cd
⑾xargs: cd: No such file or directory
⑿[roottest nagiosclient_db]# cd “`ls | egrep ‘nrpe-[-]。[-]+.$’ `”
⒀[roottest nrpe-.]# pwd
⒁/home/monitor/nagiosclient_db/nrpe-.
⒂进入了指定的目录。
⒃【为什么cd命令不能进入xargs管道输出的目录】
⒄xargs牵涉写管道,而cd是内部命令。具体的牵涉shell的工作原理。
⒅查看cd命令的绝对路径:
⒆[roottest nrpe-.]# which cd
⒇/usr/bin/which: no cd in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
⒈查看xargs的绝对命令:
⒉[roottest nrpe-.]# which xargs
⒊/usr/bin/xargs
⒋详情如上,因非系统工程师,故此处不对shell的原理做深入研究。
⒌上面就是cd命令无法进入xargs管道输出的目录的解决方法的介绍了,因为xargs牵涉写管道,而cd是内部命令,所以遇到这种情况的时候修改命令就可以进入指定的目录了,你了解了吗?