mirror of
https://github.com/tildeclub/site.git
synced 2026-01-24 05:50:17 +00:00
7 lines
116 B
Bash
Executable File
7 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for txt in ./*.txt; do
|
|
printf "0%s\t%s\ttilde.club\t70\n" "$(head -n1 $txt)" "/wiki/${txt#"./"}"
|
|
done
|
|
|