renamed feed.txt to feed.tsv. added hooks. made all of the scripts in scripts/ executable

This commit is contained in:
Abdullah Islam 2023-05-20 21:12:38 +06:00
parent da90c29bbc
commit 35bf6adcba
9 changed files with 21 additions and 5 deletions

View File

3
hooks/post-commit Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/execlineb
foreground { make test all }
foreground { git status }

0
scripts/feed.awk Normal file → Executable file
View File

0
scripts/gemini.awk Normal file → Executable file
View File

0
scripts/html.awk Normal file → Executable file
View File

0
scripts/navbar.awk Normal file → Executable file
View File

23
scripts/new_feed_entry.el Normal file → Executable file
View File

@ -1,6 +1,19 @@
#!/usr/bin/execline
elgetopt "f:d:"
ifthen { test $# -eq 1 } {
printf "usage: new_feed_entry [-f <file>] [-d <description>]"
#!/usr/bin/execlineb
elgetopt f:t:d:
elgetpositionals
foreground {
echo $#
}
ifelse { test $# -lt 2 } {
printf "usage: new_feed_entry [-f <file>] [-t <title>] [-d <description>]\n"
} foreground {
forx OPTION { ${@} } multisubstitute {
importas -i OPTION OPTION
elgetpositionals
}
case -s -- ${OPTION} {
"-f" { echo $1 }
"-t" { echo $1 }
"-d" { echo $1 }
}
}
for { $@ }

0
scripts/sitemap_gmi.awk Normal file → Executable file
View File

0
scripts/sitemap_html.awk Normal file → Executable file
View File