forked from docopt/docopts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sylvain Viart
committed
Jun 27, 2018
1 parent
71d41a6
commit 07b2a0a
Showing
3 changed files
with
29 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
# current work in PROGRRESS | ||
|
||
finish examples/ | ||
examples without lib docopts.sh | ||
test .travis.yml with 2 OSes | ||
old style loop bash examples | ||
|
||
# next | ||
|
||
## release and binary | ||
|
||
publish release and pre-build binaries | ||
|
||
## CI | ||
integration with automated tests | ||
|
||
## provide test on old environment | ||
|
||
docker? | ||
32bist | ||
bash 3 | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
# | ||
# Show file differences between 2 hosts. | ||
# Usage: sshdiff.sh [-h] [-s] <host1> <host2> <file> [<lines_context>] | ||
# | ||
# If not specified, <lines_context> defaults to 3. | ||
# | ||
# Use colordiff if available. | ||
# | ||
# Options: | ||
# -h display this help and exit | ||
# -s use sort instead of cat to show remote <file> | ||
# | ||
# Examples: | ||
# sshdiff.sh server1 hostname2 /etc/hostname | ||
|
||
PATH=../..:$PATH | ||
source docopts.sh --auto "$@" | ||
|
||
docopt_print_ARGS | ||
|
||
|