-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
7 changed files
with
45 additions
and
17 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ "$#" -ne 2 ]; then | ||
echo "Usage: ./checknumtasks.sh <actual_num_tasks> <expected_num_tasks> " | ||
exit 1 | ||
fi | ||
|
||
if [ "$1" -ne "$2" ]; then | ||
echo "Number of tasks: $1; expected: $2" | ||
exit 1 | ||
fi | ||
|
||
echo "Actual and expected number of tasks match" |
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
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,10 @@ | ||
tech: Order new ACME rocket skates | ||
traps: Draw fake tunnel on the canyon wall | ||
tech: Check ACME catalog for new gadgets | ||
tech: Test the giant slingshot | ||
tech: Assemble ACME jet-propelled pogo stick | ||
plan: Plan the next trap location | ||
orders: Buy more bird seed for the bait | ||
tech: Install spring-loaded boxing glove | ||
order: Order a lifetime supply of ACME bird seed to lure Road Runner | ||
traps: Paint a fake bridge over a dry riverbed |
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