sh 将whatsapp排序到过时的子文件夹
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 将whatsapp排序到过时的子文件夹相关的知识,希望对你有一定的参考价值。
#!/bin/bash
echo running;
find . -maxdepth 3 -regex ".*\-2016[0-9][0-9][0-9][0-9].*.*" | while read filename;
do
f=$(basename "$filename")
echo $f
date=$(echo "$f" | cut -c5-12)
echo $date
if echo "${date}" | grep '[0-9]' >/dev/null; then
dirpath='/Users/shedali/Dropbox/Events/2016/'${date:0:4}-${date:4:2}-${date:6:2}
echo makedir "$dirpath"
mkdir -p "$dirpath"
echo mo "$filename" ${dirpath}
mv "$filename" "${dirpath}"
else
echo 'Invalid input'
echo "${date}" | grep '[0-9]'
exit 1
fi
done
# directory=${file%.pdf}
# mv "$filename" "$directory"/"$filename"
以上是关于sh 将whatsapp排序到过时的子文件夹的主要内容,如果未能解决你的问题,请参考以下文章
如何像whatsapp一样将图像缓存到特定文件夹
通过我的应用程序将pdf发送到android 11中的whatsapp时出现发送失败错误
如何让我的应用出现在其他应用的共享板中 - 例如whatsApp
Swift 4 音频与 Whatsapp 共享
怎样将微信的内容转发到whatsapp上
Unity3D通过Whatsapp发送AudioClip