| bio | website | |
|---|---|---|
| location | Greece | |
| age | ||
| visits | member for | 2 years, 6 months |
| seen | yesterday | |
| stats | profile views | 1,240 |
A freelance Computer Engineer, with experience mainly on C, Java and all things Un*x...
|
Nov 24 |
answered | Display data in matrix format? |
|
Nov 24 |
answered | File System Development |
|
Nov 24 |
comment |
Is it possible to map just part of a file using mmap? Why not just use a bit of pointer arithmetic and one more pointer variable? |
|
Nov 24 |
answered | Cant Workout Why this C Condition Fails |
|
Nov 24 |
comment |
How do I delete certain files in the current directory that doesn't match the given pattern? The ...+ -exec variant did not exist in GNU findutils till 5 years ago and I still have systems from that long back. I really don't think we will easily find a oneliner that works everywhere. The best advice would probably be for the OP to Read The Fine Manual and find(1) out what works on their system. |
|
Nov 24 |
comment |
Check if bash script was invoked from a shell or another script/application @Dennis: Yes, it seems so... checking for a + in the flags of either the script or its parent seems to do the job for most cases. Only exception seems to be in the case of a caller script being backgrounded. Perhaps a merging of all methods would be most versatile ? |
|
Nov 24 |
revised |
How do I delete certain files in the current directory that doesn't match the given pattern? added 727 characters in body |
|
Nov 23 |
comment |
Check if bash script was invoked from a shell or another script/application @Dennis: I don't think that there is a universal or magical solution for this. The PPID method is effective, but it would also fail if the script was called through another script. |
|
Nov 23 |
comment |
How do I delete certain files in the current directory that doesn't match the given pattern? @Gareth: heh... you were faster. Anyway I just verified (for my peace of mind, mostly) that this will NOT work if there is whitespace in the filenames |
|
Nov 23 |
comment |
How do I delete certain files in the current directory that doesn't match the given pattern? Uh, doesn't this have some rather significant issues with whitespace in filenames? |
|
Nov 23 |
answered | How do I delete certain files in the current directory that doesn't match the given pattern? |
|
Nov 23 |
revised |
Check if bash script was invoked from a shell or another script/application added 260 characters in body |
|
Nov 23 |
answered | Check if bash script was invoked from a shell or another script/application |
|
Nov 23 |
answered | Storing struct array in kernel space, Linux |
|
Nov 23 |
comment |
Storing struct array in kernel space, Linux I am not sure what you are asking... A pointer to a kmalloc'ed (or vmalloc'ed if there's a lot of data) buffer containing your array would suffice. Make sure to free it once you are done. |
|
Nov 23 |
revised |
Process Scheduling Finally an answer that works |
|
Nov 23 |
comment |
Process Scheduling true, forgot about that particular bash brain-deadness. Replacing with fds/read... |
|
Nov 23 |
answered | Process Scheduling |
|
Nov 22 |
comment |
How can I run an untrusted C program in a sandbox in Linux? I don't know about the OP, but launching a VM per test program would be unacceptable in many cases. In my environment (I'm a TA) there can be as many as 200 students submitting 10-12 programs each within a 2-hour period. No program runs for more than 10sec CPU-time, but when the submissions pile up we get turn-around times of 15min or more. Introducing a VM for each program would push the CPU-time to 60sec or more per program and I don't want to think about the turn-around times at all. Maybe a VM per session, but no way we could do that per-program... |
|
Nov 22 |
revised |
How can I run an untrusted C program in a sandbox in Linux? added 1665 characters in body |