Welcome to mirror list, hosted at ThFree Co, Russian Federation.

comment-touch.sh « bin - github.com/syui/hugo-theme-wave.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eabf0af1021864414a8388c9a4b28b70284ade22 (plain)
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
#!/bin/bash

d=content/post

if [ ! -d ../syui.gitlab.io-comment ];then
	git clone https://github.com/mba-hack/syui.gitlab.io-comment.git ../syui.gitlab.io-comment
fi
if [ -d ../${d} ];then
	mkdir -p ../syui.gitlab.io-comment/_posts
	f=$(echo -e "`ls -A ../${d}`\n`ls -A ../syui.gitlab.io-comment/_posts`" | sort | uniq -u)
	cd ../syui.gitlab.io-comment/_posts
	if [ -n "$f" ];then
		n=`echo "$f" | wc -l`
		echo $n
		for (( i=1;i<=$n;i++ ))
		do
			t=`echo "$f" | awk "NR==$i"`
			echo $t
			touch $t
			git add $t
			git commit -m "update"
			git push
		done
	fi
fi