【发布时间】:2015-10-16 15:47:05
【问题描述】:
我在 unix (csh) 上经常使用 find 命令。
结果是否可能是完整/绝对路径,并且将从我开始搜索的目录开始
例如,当从
/project/Test/v0.15/test/frontend运行命令时, 结果是:
./core/serdes_complex/frontend/lib/lib_behave.f
./core/serdes_complex/frontend/lib/test_srd_compile.f
但我想得到
/project/Test/v0.15/test/frontend/core/serdes_complex/frontend/lib/lib_behave.f
/project/Test/v0.15/test/frontend/core/serdes_complex/frontend/lib/test_srd_compile.f
【问题讨论】:
-
你是如何使用 find 命令的?我想直接从
/搜索而不是你的当前目录会解决你的问题! -
我想这可能会回答你的问题:unix.stackexchange.com/questions/125779/…
标签: unix directory find csh absolute-path