T) Without opening a graph how should we know how many input files are using in that graph?
- air project get-required-file /Projectname/mp/ABC.mp > ListofInputfiles.dat
/* This wil save list of input files in file ListofInputfiles.dat */
- cat ListofInputfiles.dat | wc -l
/* It will give the count of input datasets required by the graph */
Comments
Post a Comment