linux move folder, rename folder, find the location of a file globally

Move folders:

mv test1 /data/build/


Rename the folder:
 

mv test test2

Find a file's location globally:

find / -type f -name "02D55FA8B237E2A5FBA212D2AE8955A3.xlsx"

 

Guess you like

Origin blog.csdn.net/xutongbao/article/details/123086875