1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:38:10 +00:00

Userland: Add a simple /bin/tr program.

This commit is contained in:
Andreas Kling 2019-04-26 00:57:37 +02:00
parent 671dee9afa
commit c392c0d799

28
Userland/tr.cpp Normal file
View file

@ -0,0 +1,28 @@
#include <AK/QuickSort.h>
#include <AK/Vector.h>
#include <AK/AKString.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv)
{
if (argc != 3) {
printf("usage: tr <from> <to>");
return 0;
}
char from = argv[1][0];
char to = argv[2][0];
for (;;) {
char ch = fgetc(stdin);
if (feof(stdin))
break;
if (ch == from)
putchar(to);
else
putchar(ch);
}
return 0;
}