Score:0

About python OS Package

vn flag

I wrote 3 simple lines, this opens a new terminal and executes the following code.

import os        
os.system("gnome-terminal -x airodump-ng wlan0mon")

But when I press ctrl + c, the new terminal instantly closes. I don't want the terminal to close. Is there a way to do it?

Score:0
jp flag

What about this:

import os
os.system("gnome-terminal -- bash -c 'YOUR COMMAND; bash'")
Score:0
tr flag
import os
os.system("gnome-terminal -- bash -c 'airodump-ng wlan0mon; bash' ")`
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.