summaryrefslogtreecommitdiff
path: root/stat.sh
blob: fa0143f3b84908fc1157aca7115e0f1f4e1d6dc8 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# Gets all accounts used by offlineimaps.

cat ~/.offlineimaprc | grep "^accounts =" | sed -e 's/accounts =\( \)//g;s/\(,\) /\n/g;'
# Another option
# Get current accounts
#accountsline=$(cat ~/.offlineimaprc | grep ^accou | sed 's/,//g')