5
votes
1answer
69 views
How does a process come to know that it has received a signal
Hi,
Please correct me if i am wrong. Here is my understanding about signals:
As far as i know, signal generation
and signal delivery are 2 different
things. In order to generate a signal,
…
2
votes
4answers
102 views
add seconds to a date
i need to add a seconds in a date.
for eg:if i have a date as 2009127000000, i need to add the seconds to this date.
also for eg 20091231235957 adding 50 seconds.
is this possible in C?
0
votes
3answers
20 views
XArgs command on cygwin is mangling file paths
I'm trying to use xargs on a Cygwin Windows system to remove SVN files deleted locally.
I run the following command that generates the following output:
svn status | grep '^\!' | sed 's/! *//'
…
1
vote
4answers
40 views
Searching code files for a particular string
Hello,
Im using Ubuntu Karmic as my operating system . I frequently need to search my project folder for a particular string, to see if its there in any of the files in the project folder or its …
0
votes
2answers
17 views
junit testing a class with shell scripting functionality under win32
Hi,
We have an API which is used in a class via an exposed interface. The API is meant for UNIX family and assumes, that every UNIX has /bin/sh. Thus when running the junit test under win32 we get:
…
1
vote
4answers
71 views
Performance of one huge unix directory VS a directory tree?
My PHP project will use thousands of pictures and each needs only a single number for it's storage name.
My initial idea was to put all of the pictures in a single directory and name the files …
5
votes
12answers
213 views
How to make this sed script faster?
I have inherited this sed script snippet that attempts to remove certain empty spaces:
s/[\s\t]*|/|/g
s/|[\s\t]*/|/g
s/[\s] *$//g
s/^|/null|/g
that operates on a file that is around 1Gb large. This …
3
votes
4answers
57 views
Tie the life of a process to the shell that started it.
In a UNIX-y way, I'm trying to start a process, background it, and tie the lifetime of that process to my shell.
What I'm talking about isn't simply backgrounding the process, I want the process to …
0
votes
2answers
59 views
Unix C++ simple server question: sending data back to browser
Hi. I am creating a simple Unix server written in C++ that simply waits for incoming connections, and then when a connection is established, it sends the requested data back to the client's browser to …
0
votes
4answers
59 views
Confusing output from time…
This command gets some data from MySQL and then manipulates it. Why is the 'real' time so much higher than the 'user' time?
>time ./command.rb
real 45m45.457s
user 3m36.478s
sys …
0
votes
2answers
29 views
Should I use msgsnd or mq_send?
I'm learning Unix IPC, and my book only talks about the msg* family of functions. However while browsing the man pages I learned about the mq_ equivalents. …
1
vote
5answers
53 views
Unix awk command regex problem
I have data like this:
# data_display
ab as we hj kl
12 34 45 83 21
45 56 98 45 09
I need just the first column alone, and only the rows starting with numbers.
I now use:
# data_display | …
2
votes
2answers
50 views
Unzip files created with WinZIP with I18N file names?
People these days create their ZIP archives with WinZIP, which allows for internationalized (i.e. non-latin: cyrillic, greek, chinese, you name it) file names.
Sadly, trying to unpack such file …
0
votes
7answers
149 views
passing string as an argument in C
I am having a function:
int getparam(char *gotstring)
and i am passing the a string argument to it i.e., a string
for eg:
char *sendstring="benjamin"
instead of teh above declaration can i use …
0
votes
1answer
40 views
How to set shell variables in subprocess.Popen (in a less ugly way…)
NOTE: This is not the same question as Python: Persistent shell variables in subprocess, as that question is actually about environment variables, not shell variables.
I'm trying to automate a basic …
