Search Results

1
vote

How do I run a command in a loop until I see some string in stdout?

CONT=1; while [ $CONT -gt 0 ]; do $CMD | tee -a $FILE | grep -q $REGEXP; CONT=$? ; done The tee command can capture stdout in a pipe while still passing the data on, and - …
6
votes

What Linux/Unix commands are outdated and have powerful alternatives?

Not exactly replacements for anything, but moreutils is a collection of small Unixy tools, which are basically meant to fill hol …
0
votes

A simple way to send mails from a C application on Unix

Sorry, but what you're asking for isn't possible. In order to send mail to another system, you'll need some kind of program which transfers mail from one computer to another. Such a program is by d …
0
votes

SFTP Rename file to append date

Do you have access to the Linux server? In that case you could just rename the files there. You could for instance use inotify to monitor the directory, and then have a script that adds the date to …
0
votes

What cutting edge desktop environments are out there?

There's also Metisse, which has a few interesting, and perhaps even useful, 3D-ish features. I've never quite been able to figure …
2
votes

Portable shared objects?

So, the question is, how to develop shared libraries for Linux? You could take a look at this tutoria …