我的最后一个问题扩展了,所以让我们分开分析。
AND 运算符,交叉点?
我举个例子:
$ find . | awk -F"/" '{ print $2 }'
.zcompdump
.zshrc
.zshrc_copy
.zshrc_somequy
.bashrc
.emacs
$ find ~/bin/FilesDvorak/.* -maxdepth 0 | awk -F"/" '{ print $6 }'
.bashrc
.emacs
.gdbinit
.git
.profile
当我将输出保存到单独的列表时,我无法理解为什么该命令不采用常见的东西:
find -f all_files -and -f right_files .
我只想:
.bashrc
.emacs