From f34a2016a18a61ce17f0a9b11a1a52642fca062b Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 9 Aug 2020 14:11:22 +0200 Subject: Added tr [WIP] --- mv.c | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 mv.c (limited to 'mv.c') diff --git a/mv.c b/mv.c new file mode 100644 index 0000000..46eab14 --- /dev/null +++ b/mv.c @@ -0,0 +1,37 @@ +#define _POSIX_C_SOURCE 2 +#include +#include +#include + + +int main(int argc, char **argv) +{ + int option; + + while ((option = getopt(argc, argv, "bfinS:t:Tuv")) != -1) + { + switch (option) + { + case 'b': + break; + case 'f': + break; + case 'i': + break; + case 'n': + break; + case 'S': + break; + case 't': + break; + case 'T': + break; + case 'u': + break; + case 'v': + break; + } + } + + return EXIT_SUCCESS; +} -- cgit