平衡点


2008/08/12

_ zentwitter で wassr も更新してみるよ.

zentwitter 自体は zentwitter で公開されてます.

  • インターフェースに zenity
  • URL アクセスには curl

を利用した, 非常に簡単なシェルスクリプトです. むしろ zenity というモノを始めて知ったですよ.

zentwitter での更新自体は curl を呼んで,

$CURL -u ${USER}:${PASS} -d status="${tweet}" ${TWITT_URL} -k

とやっているので,

$CURL -u ${TWIT_USER}:${TWIT_PASS} -d status="${tweet}" ${TWITT_URL} -k
$CURL ${WASS_URL} -u ${TWIT_USER}:${TWIT_PASS} -d "status=${tweet}"

なんて書いておくと, zentwitter を起動して に対して適当に呟くと, twitter 側も wassr 側も更新できます.

…で, 大抵 twitter 側へレスを返しているので, @hogehoge みたいなメッセージは twitter 側へ流して欲しいな, とか思いましたよ. そんな訳で,

# update status
# if tweet is direct message, can't update status of wassr
if echo ${tweet} | grep -E -q '^@'; then
    $CURL -u ${TWIT_USER}:${TWIT_PASS} -d status="${tweet}" ${TWITT_URL} -k
else
    $CURL -u ${TWIT_USER}:${TWIT_PASS} -d status="${tweet}" ${TWITT_URL} -k
    $CURL ${WASS_URL} -u ${WASS_USER}:${WASS_PASS} -d "status=${tweet}"
fi

とかやってお茶濁してみたり.


連絡先など
最近の日記
  • 2024/10/09
    • 1. Mastodon でのメール通知, というか Exim4 と Apparmor
  • 2024/06/19
    • 1. WSL2 での gpg-agent, ssh-agent
  • 2024/06/18
    • 1. WSL で Windows 側のフォントを利用する
  • 2024/06/17
    • 1. WSLとWindowsの時刻同期
  • 2024/06/12
    • 1. wsl2 で systemd
    • 2. wslg の設定
一覧
2006|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|09|10|11|12|
2012|02|03|04|08|09|10|11|12|
2013|01|02|03|04|05|06|08|09|10|11|12|
2014|01|02|04|05|06|07|08|09|10|11|12|
2015|01|02|03|04|05|06|07|09|10|
2016|02|03|
2017|01|02|03|05|06|07|09|11|12|
2018|03|06|07|10|11|12|
2019|01|02|03|04|05|07|10|12|
2020|01|02|03|04|05|08|09|10|11|12|
2021|01|02|03|05|06|07|08|09|11|12|
2022|01|02|03|04|05|06|08|10|11|12|
2023|02|03|04|06|08|09|11|12|
2024|01|02|03|04|05|06|10|
Back to Top ▲