Imported Upstream version 4.0.43
[platform/upstream/mtools.git] / precmd.c
1 /*  Copyright 1997,1999,2001-2004,2007,2009 Alain Knaff.
2  *  This file is part of mtools.
3  *
4  *  Mtools is free software: you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation, either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  Mtools is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with Mtools.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  * Do filename expansion with the shell.
18  */
19
20 #include "sysincludes.h"
21 #include "mtools.h"
22
23 void precmd(struct device *dev)
24 {
25         if(!dev)
26                 return;
27         postcmd(dev->precmd);
28 }
29
30 void postcmd(const char *cmd)
31 {
32 #ifndef OS_mingw32msvc
33         int status;
34         pid_t pid;
35
36         if(!cmd)
37                 return;
38
39         switch((pid=fork())){
40                 case -1:
41                         perror("Could not fork");
42                         exit(1);
43                 case 0: /* the son */
44                         execl("/bin/sh", "sh", "-c", cmd, (char *)NULL);
45                         break;
46                 default:
47                         wait(&status);
48                         break;
49         }
50 #endif
51 }
52