9 lines
240 B
Plaintext
9 lines
240 B
Plaintext
|
#!/bin/sh
|
||
|
. $HOME/.bin/_config
|
||
|
|
||
|
printf "Blog Index:\n"
|
||
|
ssh $USER@$DOMAIN "find $LOCAL_PATH/posts -type f -maxdepth 1 \
|
||
|
-exec printf '{}|' \; -exec head -1 '{}' \; \
|
||
|
| sed 's,.*/,,'| sort | column -s'|' -t "
|
||
|
|