-
Notifications
You must be signed in to change notification settings - Fork 0
/
parfu_main_0_6.cc
43 lines (37 loc) · 1.18 KB
/
parfu_main_0_6.cc
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
38
39
40
41
42
43
////////////////////////////////////////////////////////////////////////////////
//
// University of Illinois/NCSA Open Source License
// http://otm.illinois.edu/disclose-protect/illinois-open-source-license
//
// Parfu is copyright © 2017-2020,
// by The Trustees of the University of Illinois.
// All rights reserved.
//
// Parfu was developed by:
// The University of Illinois
// The National Center For Supercomputing Applications (NCSA)
// Blue Waters Science and Engineering Applications Support Team (SEAS)
// Craig P Steffen <[email protected]>
// Roland Haas <[email protected]>
//
// https://github.com/ncsa/parfu_archive_tool
// http://www.ncsa.illinois.edu/People/csteffen/parfu/
//
// For full licnse text see the LICENSE file provided with the source
// distribution.
//
////////////////////////////////////////////////////////////////////////////////
#include "parfu_main.hh"
int main(int argc, char *argv[]){
Parfu_directory test_dir;
cout << "parfu test build\n";
if(argc > 1){
cout << "We will scan directory:";
cout << argv[1];
cout << "\n";
}
else{
cout << "You must input a directory to scan!\n";
}
return 0;
}