ai/at
1
0

add patch

This commit is contained in:
2025-03-01 21:14:56 +09:00
parent b5e44947da
commit 3def45387f
92 changed files with 2053 additions and 3050 deletions

18
scpt/src/is/syu/main.zsh Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/zsh
function self-col(){
if [ -n "$1" ];then
t=`curl -sL "$pds/xrpc/com.atproto.repo.listRecords?repo=$handle&collection=$1"`
echo $t|jq .
exit
fi
col=(
ai.syui.game
ai.syui.system
)
e=${col[@]: -1}
for i in $col; do
t=`curl -sL "$pds/xrpc/com.atproto.repo.listRecords?repo=$handle&collection=$i"`
echo $t|jq .
done
}