git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@3903 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -11,18 +11,21 @@
|
||||
See the README file in the top-level LAMMPS directory.
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "mpi.h"
|
||||
#include "string.h"
|
||||
#include "unistd.h"
|
||||
#include "sys/stat.h"
|
||||
#include "shell.h"
|
||||
#include "comm.h"
|
||||
#include "error.h"
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
Shell::Shell(LAMMPS *lmp) : Pointers(lmp) {}
|
||||
Shell::Shell(LAMMPS *lmp) : Pointers(lmp)
|
||||
{
|
||||
MPI_Comm_rank(world,&me);
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
@ -37,24 +40,24 @@ void Shell::command(int narg, char **arg)
|
||||
} else if (strcmp(arg[0],"mkdir") == 0) {
|
||||
if (narg < 2) error->all("Illegal shell command");
|
||||
#ifndef WINDOWS
|
||||
if (comm->me == 0)
|
||||
if (me == 0)
|
||||
for (int i = 1; i < narg; i++)
|
||||
mkdir(arg[i], S_IRWXU | S_IRGRP | S_IXGRP);
|
||||
#endif
|
||||
|
||||
} else if (strcmp(arg[0],"mv") == 0) {
|
||||
if (narg != 3) error->all("Illegal shell command");
|
||||
if (comm->me == 0) rename(arg[1],arg[2]);
|
||||
if (me == 0) rename(arg[1],arg[2]);
|
||||
|
||||
} else if (strcmp(arg[0],"rm") == 0) {
|
||||
if (narg < 2) error->all("Illegal shell command");
|
||||
if (comm->me == 0)
|
||||
if (me == 0)
|
||||
for (int i = 1; i < narg; i++)
|
||||
unlink(arg[i]);
|
||||
|
||||
} else if (strcmp(arg[0],"rmdir") == 0) {
|
||||
if (narg < 2) error->all("Illegal shell command");
|
||||
if (comm->me == 0)
|
||||
if (me == 0)
|
||||
for (int i = 1; i < narg; i++)
|
||||
rmdir(arg[i]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user