tuxmartin

Untitled

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