Created
June 20, 2019 06:49
-
-
Save yt-siden/3a360c247b92939ed9a8a1f1cfac39e1 to your computer and use it in GitHub Desktop.
Mailmanが管理するlistに`arch`を実行する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
LISTS=`ls -l /var/lib/mailman/lists | grep ^d | awk '{print $9;}'` | |
for list in $LISTS | |
do | |
/usr/lib/mailman/bin/arch $list | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment