tuxmartin

Untitled

Mar 31st, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #define SCRIPT_FOLDER "/opt/angee/ang-bt-controller/"
  2.  
  3. #include <iostream>
  4. #include <cstring>
  5. using namespace std;
  6.  
  7. int main(void) {
  8.     string addr = "aaa";
  9.     string command = "python " SCRIPT_FOLDER "tag_unbond.py " + ' ' + addr;
  10.     cout << "tagUnbond COMMAND: " << command << endl;
  11.  
  12. }
  13.  
  14. /*
  15. $ g++ test.cpp -o test
  16. $ ./test
  17. tagUnbond COMMAND: ler/tag_unbond.py aaa
  18. $
  19. */
Advertisement
Add Comment
Please, Sign In to add comment