syui
7b03adda1f
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
17 lines
255 B
Bash
17 lines
255 B
Bash
|
|
function cid(){
|
|
dd=${d:h}
|
|
ai=$dd/target/debug/ai
|
|
txt=$dd/.config/ai/txt
|
|
f=$txt/notify_cid
|
|
if [ ! -f $ai ];then
|
|
cd $dd
|
|
cargo build
|
|
fi
|
|
if [ ! -d $txt ];then
|
|
mkdir -p $txt
|
|
fi
|
|
$ai n|jq -r ".[]|.[]?.cid" >> $f.txt
|
|
cp -rf $f.txt ${f}_run.txt
|
|
}
|