Skip to content

Commit

Permalink
s/with/by/
Browse files Browse the repository at this point in the history
  • Loading branch information
wara committed May 23, 2015
1 parent 69faec7 commit 46e6c80
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Usage
-d, --delimiter=DELIM delimit line by DELIM

Output control:
-m, --margin=FORMAT join cells with FORMAT
-m, --margin=FORMAT join cells by FORMAT
-j, --justfy=SEQUENCE justfy cells by SEQUENCE

Miscellaneous:
Expand Down Expand Up @@ -72,7 +72,7 @@ DELIM will interpreted as fixed string.
age=17

$ cat user | alita -d==
(delimit line with '=')
(delimit line by '=')
name = Tom
age = 17

Expand All @@ -81,7 +81,7 @@ DELIM will interpreted as fixed string.
cout << "9 / 2 = "<<9 / 2 << ".." << 9 % 2<< endl;

$ cat snip.cpp | alita -d="<<"
(delimit line with '<<')
(delimit line by '<<')
cout << "9 * 2 = " << 9 * 2 << endl;
cout << "9 / 2 = " << 9 / 2 << ".." << 9 % 2 << endl;

Expand All @@ -94,7 +94,7 @@ DELIM will interpreted as regexp.
f===> g => h

$ cat root | alita -r -d="=+>"
(delimit line with /=+>/)
(delimit line by /=+>/)
a => b ===> c
c ==> d ==> e
f ===> g => h
Expand All @@ -105,7 +105,7 @@ DELIM will interpreted as regexp.
https://github.com/kusabashira/alita

$ cat url | alita -r -d="[:/]+"
(delimit line with /[:\/]+/)
(delimit line by /[:\/]+/)
https :// github.com / vim-scripts / Align
https :// github.com / h1mesuke / vim-alignta
https :// github.com / kusabashira / alita
Expand Down

0 comments on commit 46e6c80

Please sign in to comment.