diff options
-rwxr-xr-x | a.out | bin | 9264 -> 14528 bytes | |||
-rw-r--r-- | main.cpp | 22 |
2 files changed, 19 insertions, 3 deletions
diff --git a/a.out b/a.out index 68f8168..6bd7ae9 100755 --- a/a.out +++ b/a.out Binary files differdiff --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; } |