1
0

more pig stuff

This commit is contained in:
dtb
2022-11-02 00:55:00 -04:00
parent 8ee09ede65
commit bcc6b0d3ac
6 changed files with 34 additions and 6 deletions

14
rss/pig_recall Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
set -e
filename="$(pig_pen)/$(pig_name $1)"
loop=0
while streq $loop 0; do
loop=1
if test -e "$filename"; then
cat "$filename"
else
pig_stow "$1" && loop=0
fi
done