aboutsummaryrefslogtreecommitdiff
path: root/mv.c
blob: 46eab1404942e5202f74f9301af26914b42897fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#define _POSIX_C_SOURCE 2
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>


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;
}