Inizio delle considerazioni sull'uso della shared memory.
[gapil.git] / sources / TestRen.c
1 /* TestRen.c
2  * 
3  * Copyright (C) 2001 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /****************************************************************
20  *
21  * Program TestRen.c: 
22  * Program to test function rename
23  *
24  * Author: Simone Piccardi
25  * Oct. 2001
26  *
27  * Usage: testrem -h give all info's
28  *
29  * $Id: TestRen.c,v 1.2 2002/05/19 13:25:04 piccardi Exp $
30  *
31  ****************************************************************/
32 /* 
33  * Include needed headers
34  */
35 #include <errno.h>       /* error definitions and routines */ 
36 #include <stdlib.h>      /* C standard library */
37 #include <unistd.h>      /* unix standard library */
38 #include <stdio.h>       /* standard I/O library */
39 #include <string.h>      /* string functions */
40
41 /* Help printing routine */
42 void usage(void);
43
44 int main(int argc, char *argv[])
45 {
46 /* 
47  * Variables definition  
48  */
49     int i;
50     char *buf,*copy;
51     /*
52      * Input section: decode command line parameters 
53      * Use getopt function
54      */
55     buf = malloc(100);
56
57     opterr = 0;  /* don't want writing to stderr */
58     while ( (i = getopt(argc, argv, "h")) != -1) {
59         switch (i) {
60         /* 
61          * Handling options 
62          */ 
63         case 'h':   /* help option */
64             printf("Wrong -h option use\n");
65             usage();
66             return -1;
67             break;
68         case '?':   /* unrecognized options */
69             printf("Unrecognized options -%c\n",optopt);
70             usage();
71         default:    /* should not reached */
72             usage();
73         }
74     }
75     /* ***********************************************************
76      * 
77      *           Options processing completed
78      *
79      *                Main code beginning
80      * 
81      * ***********************************************************/
82     /* There must be 2 remaing parameters */
83     if ( (argc-optind) != 2 )  {
84         printf("From %d arguments, removed %d options\n", argc, optind);
85         usage();
86     }
87     if ( rename(argv[optind], argv[optind+1]) ) {
88         copy = strerror_r(errno, NULL, 0);
89         perror("cannot rename");
90         exit(1);
91     }
92     return 0;
93 }
94 /*
95  * routine to print usage info and exit
96  */
97 void usage(void) {
98     printf("Program testren : test renaming of file/directories  \n");
99     printf("Usage:\n");
100     printf("  testrem [-h] fileorig filedest \n");
101     printf("  -h           print this help\n");
102     
103     exit(1);
104 }
105