-
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
1 parent
48beb12
commit 9cb35f6
Showing
4 changed files
with
73 additions
and
25 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,16 @@ | ||
# Qwertyflip | ||
|
||
qwertyflip transforms input files by flipping their characters based on keyboard positions. | ||
|
||
You can run it as: | ||
|
||
```bash | ||
./qwertyflip <command file> <input file> | ||
``` | ||
|
||
where `command file` is a file containing a string of comma-separated transforms. The transforms can | ||
be one of `H` for a horizontal keyboard flip, `V` for a vertical keyboard flip, or `+/-N` for a shift | ||
by N positions. So the command `H,-3,V` would flip an input of `1` first horizontally to `0`, then | ||
shift by -3 positions to `7`, then flip vertically to `m`. | ||
|
||
Output is produced to standard out. |
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