-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #191 from bolthole/zrep2
Zrep2 offical release. Welcome to bash!
- Loading branch information
Showing
12 changed files
with
348 additions
and
291 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
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,14 @@ | ||
Notes on things that had to be done to convert zrep | ||
from ksh to bash | ||
|
||
- Replace print with echo | ||
|
||
- for some function outputs, forced use of "echo -n" instead of just echo | ||
|
||
- for printf %(xx)T "#seconds", convert to | ||
printf %(xx)T "seconds" | ||
|
||
- also printf T: | ||
printf '%(%s)T' now | ||
becomes | ||
printf '%(%s)T' |
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,6 @@ | ||
The main test loop is "run_tests.sh" | ||
|
||
however, before the first run on a system, you will need to run, | ||
in this order: | ||
./setup_pools.sh | ||
./setup_zrep.sh |
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,4 @@ | ||
|
||
# tool to make it easier to compare master branch to zrep2 branch file | ||
sed 's/\([\t ]\)print /\1echo /g' ../zrep/$1 >/tmp/$1 | ||
diff /tmp/$1 $1 |less |
Oops, something went wrong.