Mac等效于查找-printf

问题描述 投票:0回答:2

是否有相当于的MacOS终端

find . -type f -printf %P\\\\n

主要是,我想在Mac上复制-printf行为。

linux macos shell
2个回答
-1
投票

unix命令行工具Apple船只非常过时;有时12或15岁。

你可以从Macports安装find

sudo port install findutils

那个版本的find-printf选项。


0
投票

如果你总是从.开始搜索,你应该可以使用这个:

$  find . -type f | sed -e 's/\.\///'
© www.soinside.com 2019 - 2024. All rights reserved.