twtxt-aliases.sh 601 B

123456789101112131415161718192021222324252627
  1. # Aliases for using twtxt
  2. #
  3. # See https://github.com/buckket/twtxt
  4. # Also see https://github.com/prologic/twtxt and https://twtxt.net/
  5. #
  6. # twtxt timeline
  7. alias twl='twtxt timeline --ascending'
  8. # twtxt twit
  9. #
  10. # TODO Mitigate possible cross-sytem conflicts. git pull here, add/commit/push after?
  11. #
  12. alias twt='twg && twtxt tweet && twp || echo failed to tweet'
  13. # twtxt publish
  14. alias twp='scp ~/twtxt.txt gmj@port111.com:~/public_html/george/'
  15. # twtxt get current
  16. alias twg='scp gmj@port111.com:~/public_html/george/twtxt.txt ~/'
  17. function twtp () {
  18. # twtxt twit and post
  19. twt "$*"
  20. twp
  21. }