Move under www to ease rsync

This commit is contained in:
2025-10-29 10:51:15 +01:00
parent 2bb22c7583
commit 30ad62e938
890 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/awk -f
# Downloadable example 7 for GNU Awk Part 15
BEGIN {
db = "awktest.db"
cmd = "sqlite3 " db
querytpl = "select id,title from episodes where id = %d;\n"
}
$0 ~ /^[0-9]+$/ {
printf querytpl,$0 |& cmd
cmd |& getline result
print result
}