I'm using find command a lot on unix (csh).
Is it possible that the result will be full/absolute path and will start from the directory where I'm starting the search
for example when running command from
/project/Test/v0.15/test/frontend
, the results are:
./core/serdes_complex/frontend/lib/lib_behave.f
./core/serdes_complex/frontend/lib/test_srd_compile.f
But i would like to get
/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
/
instead of your current directory would solve your problem! – Wera