-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
1 parent
8318469
commit 9fe7311
Showing
1 changed file
with
9 additions
and
6 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,10 +1,13 @@ | ||
#!/bin/sh | ||
# well, it may be the case that this works on the BSDs, but of course it may | ||
# well not. funny creatures, those BSDs. not as predictable as a herd of GNU | ||
yes '' | sed ' | ||
3~3{ s/$/Fizz/ } | ||
5~5{ s/$/Buzz/ } | ||
t | ||
=; d | ||
' | ||
yes '' \ | ||
| sed ' | ||
3~3{ s/$/Fizz/ } | ||
5~5{ s/$/Buzz/ } | ||
# do you *understand* now? do you feel the weight of enlightenment? | ||
t | ||
=; d | ||
' | ||
|