2
votes
How to suppress Terminated message after killing in bash?
The short answer is that you can't. Bash always prints the status of foreground jobs. The monitoring flag only applies for background jobs, and only for interactive shells, not scripts.
se …
4
votes
How to express this Bash command in pure Python
import os
import shutil
from os import path
from os.path import join, getmtime
from time import time
archive = "bak"
current = "cur"
def archive_old_versions(days = 3):
for root, dirs …
0
votes
C Shell: How to execute a program with non-command line arguments?
This is a job for the unix program expect, which can nicely and easily interactively command programs and respond to their prompts.
…
