rename 'pick' to 'grep'
2 files changed, 2 insertions(+), 2 deletions(-)

M README.md
M cmd/mb/main.go
M README.md +1 -1
@@ 34,7 34,7 @@ These simple sequences tokens can be or-
 * "n,m": msg id == n or msg id == m
 * "n,m-o": msg id == n or (message id is >= m and <= o)
 
-There is no limit, so a sequence like 1,5,18-29,44,71,91-98,103,112-145 
+There is no limit, a sequence like 1,5,18-29,44,71,91-98,103,112-145 
 is valid.
 ## Examples
 * list all messages in inbox folder

          
M cmd/mb/main.go +1 -1
@@ 191,7 191,7 @@ func main() {
 			break
 		}
 		err = src.Close()
-	case "pick":
+	case "grep":
 		// syntax: pick <folder> regexp
 		if len(os.Args) < 3 {
 			err = missingParams