newsletter/allusers.fish

9 lines
214 B
Fish
Raw Permalink Normal View History

2017-04-15 14:18:40 +00:00
#!/usr/bin/fish
2017-04-15 11:31:32 +00:00
# with thanks to nossidge
2017-04-15 14:18:40 +00:00
cat /etc/passwd \
| grep "/home" \
| grep -v "/bin/false" \
| cut -d: -f1 \
| sort \
| awk '{printf $1"@tilde.town, "}'