~aleteoryx/tclfeed-bsky

ref: 0924982a1ed287195a3f597f04c0d583d2556833 tclfeed-bsky/bin/updatelists.tcl -rwxr-xr-x 827 bytes
0924982aAleteoryx probably the last of the mod tools for now. 28 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/env tclsh

if {$argc != 1} { return -code error "Usage: bin/updatelists.tcl DB" }
set uris [lassign $argv db]

cd [file dirname [file dirname [dict get [info frame [info frame]] file]]]

puts "importing rahaeli's lists..."
exec bin/importlist.tcl $db \
  https://bsky.app/profile/rahaeli.bsky.social/lists/3lbh3ebjhfv24 \
  https://bsky.app/profile/rahaeli.bsky.social/lists/3lbgroz3w4c2i \
  https://bsky.app/profile/rahaeli.bsky.social/lists/3lasodgegrc2a \
  https://bsky.app/profile/rahaeli.bsky.social/lists/3l6do6yblno2a \
  https://bsky.app/profile/rahaeli.bsky.social/lists/3l4d4bgyso72w \
  https://bsky.app/profile/rahaeli.bsky.social/lists/3l42hr55vwl2o \
  https://bsky.app/profile/rahaeli.bsky.social/lists/3l42hebnldp2w \
  https://bsky.app/profile/rahaeli.bsky.social/lists/3l42gs6pmns22
puts "imported!"