adb shell如何进行cp文件件,并且对文件夹副本重命名,并且加上long类型的时间戳
时间: 2024-06-01 12:09:26 浏览: 56
可以使用以下命令:
adb shell cp -r /path/to/original/folder /path/to/new/folder
adb shell mv /path/to/new/folder /path/to/new/folder$(date +%s)
其中,%s 是将当前时间转换为 Unix 时间戳的格式。通过使用 $(date +%s) ,可以在文件夹的副本名称中添加当前时间戳。
阅读全文