Takt.Op:Destiny

片刻悲欢,终是要直面现实。

值得记录的事情 | Specials & Feelings

半夜三点睡,十点起来继续修博客的文件日期。
试下codeblock。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env sh
# Copied From URL: https://stackoverflow.com/questions/21735435/git-clone-changes-file-modification-time
git config --global core.quotepath false # fix CJK.
[[ $1 == "--cf" ]] && {
# Due to Cloudflare clone with --depth=1 and prohibit rm ./
git clone https://github.com/wmyfelix/wmyfelix.git -b dev ./fixdate
cd ./fixdate
ls -al
loc=../ # redirect to parent directory
}
git log -2
git ls-tree -r --name-only HEAD | while read filename; do
echo Processing:$filename
unixtime=$(git log -1 --format="%at" -- "${filename}")
echo strUNIX:$unixtime
touchtime=$(date -d @$unixtime +'%Y%m%d%H%M.%S')
echo strTouch:$touchtime
touchname=$loc${filename}
echo Touching:${touchname}
chmod +w "${touchname}"
touch -t ${touchtime} "${touchname}"
done

[[ $1 == "--cf" ]] && {
cd .. ## back to parent directory
ls -al
}

不知道为何未出现时区造成的时间偏移。似乎UNIX时间戳并未进行时区转换,为UTC+8

看完了宿命回响:命运节拍

ANi这个项目好厉害,从动漫疯和哔哩哔哩自动fetch番剧并发布。

  • 似乎是部署在Cloudflare Worker的
  • 想学后端

做了什么 | Commons

Chary adj.

什么没做 | To-do Regrets

任务 | Jobs

  • 语文 | Chinese

  • 数学 | Mathematics

  • 英语 | English

  • 物理 | Physics

  • 化学 | Chemistry

  • 生物 | Biology

  • Daily Workouts

    • FollowingMoon
    • ChasingSun
    • CheckAtSleep

心情 | Emotions

变成笨蛋了。
本初


Takt.Op:Destiny
https://lcia.eu.org/2021/12/25/Takt-Op-Destiny/
Author
mingww64
Posted on
December 25, 2021
Licensed under