I have a file with some thousands lines with the below format: 1.3.111.2.802.1.1.3.1.6.3.1.2.5.1.2 2 5
I want to capture prompt of a remote device. -regexp {[\$\#]\s*$} { # capture the prompt } "[\$#]\s*$" does not work for prompt with color codes.
I have been trying to modify the TCP source file parameters and I wanted to execute the modified source file in ns2. Can someone give the steps involved to modi
Consider below example: import tkinter as tk root = tk.Tk() root.title("root") other_window = tk.Tk() other_window.title("other_window") root.mainloop() a