Search Results

0
votes

Moving a directory atomically

Something to keep in mind is that if your process has any of the files in alpha open when this move/delete occurs the process will not notice and any data written will be lost when the file is clos …
0
votes

How do I replace ‘php3’ with ‘php’ inside every file in a directory.

sed -i 's/php3/php/g' * Assuming you are using a unix-like operating system. …
6
votes

Scripting language choice for initial performance

Because of your requirement for fast startup time and a calling frequency greater than 1Hz I'd recommend either staying with C and figuring out how to make it portable (not always as easy as a few …