diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp index d3b6ea6..b895b20 100644 --- a/main.cpp +++ b/main.cpp @@ -1,9 +1,25 @@ #include <iostream> #include <stdlib.h> +#include <fstream> +#include <string> int main(){ - std::cout << "Download Data" << std::endl; - command - system("ls -l"); + // system("ls -l"); + // system("python3 download_data.py"); + + std::string line; + std::ifstream file ("TLE/argos.txt"); + + if(file.is_open()){ + while(getline(file, line)){ + std::cout << line << '\n'; + } + file.close(); + } + + else{ + std::cout << "Unable to open file"; + } + return 0; } |