Using command to move file in Rancher

Mound a storage space for the workload on the rancher.

 Recently, I often report that there is not enough space, but the funds are limited and the space cannot be expanded. What should I do?

Since the files are important and cannot be deleted directly, we can move files older than 50 days to other places.

find ./salaryCard -mtime +50 -type f  -exec mv {} /app/test  \;

Please refer to it if you are not familiar with Linux commands.

Files and Directories Linux File and Directory Management | Newbie Tutorial

Find command Linux find command | Newbie tutorial

おすすめ

転載: blog.csdn.net/wish366/article/details/121439482