Untitled

mail@pastecode.io avatar
unknown
plain_text
7 days ago
445 B
2
Indexable
Never
import subprocess

# Define the command
command = ['sshpass', '-p', 'wow', 'ssh', 'jjjjjjjjjj@1.1.1.1.1', f'"ping {param} 1 -c4 {host}"']

# Run the command using subprocess.run()
try:
    result = subprocess.run(command, capture_output=True, text=True)
    print(result.stdout)  # Print the output of the command
    print(result.stderr)  # Print any error messages
except subprocess.CalledProcessError as e:
    print(f"Error: {e}")
Leave a Comment