I3 to Sway #1

Merged
dbroqua merged 112 commits from gentoo-sway into master 2021-10-21 21:40:49 +02:00
Showing only changes of commit 7fd202ffc0 - Show all commits

16
bin/orderForAlpine.sh Executable file
View File

@ -0,0 +1,16 @@
#! /bin/bash
DATE=`date +%Y%m%e%k`
INC=1
DATE=$((DATE*100 + 00))
for file in *; do
echo ${file} $((DATE+INC))
touch -a -m -t $((DATE+INC)).00 "${file}"
INC=$((INC+1))
if [ ${INC} == 60 ]; then
INC=0
DATE=$((DATE+100))
fi
done