5
votes
2answers
106 views
Problem with piping commands in C
Hi,
I'm trying to create a simple shell in C for Unix. I've been able to do all the parsing of commands and execution, but I'm having a problem with piping. I think the problem is …
1
vote
5answers
91 views
Multiple threads in C program
I'm writing a Unix application in C which uses multiple threads of control. I'm having a problem with the main function terminating before the thread it has spawned have a change t …
5
votes
2answers
50 views
How do I get vim’s :sh command to source my bashrc?
Whenever I start a shell in vim using :sh, it doesn't source my ~/.bashrc file. How can I get it to do this automatically?
0
votes
0answers
12 views
Linked video files in Linux/OSX [closed]
Hi all!
I have some anime tv series with linked opening and ending.
E.g.:
Code Geass - Lelouch of the Rebellion - 01.mkv
Code Geass - Lelouch of the Rebellion - 02.mkv
Code Geass - …
1
vote
8answers
120 views
Development Environment in Windows
What are your recommendations for setting up a development environment in Windows, especially when not using an IDE. I am attempting to familiarize myself with Windows, and I feel …
0
votes
3answers
21 views
How to egrep variable-Unix shell script
I’m trying to validate input by using egrep and regex.Here is the line from script (c-shell):
echo $1 | egrep '^[0-9]+$'
if ($status == 0) then
set numvar = $1
else
echo "Inva …
0
votes
1answer
18 views
What is the difference between a .sl and a .so on HPUX?
Since you can link your application to a .sl file and a .so file what exactly are the differences between .so and .sl files?
2
votes
5answers
94 views
Advanced grep unix
Usually grep command is used to display the line contaning the specified pattern. Is there any way to display n lines before and after the line which contains the specified patter …
0
votes
4answers
36 views
sed regex to non-greedy replace?
I am aware of another question that is quite similar, but for some reason I'm still having problems.
I have a GC log that I'm trying to trim out the Tenured section enclosed in [] …
0
votes
4answers
55 views
What is the difference between read and pread in unix?
What is the difference between the functions read() and pread() in unix?
When choosing between them, what points should I take into consideration?
I googled for the difference bet …
0
votes
1answer
27 views
Determining execution time of a thread and IO accesses by different threads
Hello
I want to determine execution time of a thread in a multi-threaded program, and I also want to know about IO accesses made by each thread.
Is there any command/tool which …
0
votes
5answers
116 views
Is Solaris or Linux the better C GUI development environment?
What might be a better choice?
I have my code (mostly C - as output from the GNU Eiffel compiler and some C++ for the GUI bindings) working with Sun Studio compiler and gcc.
But …
0
votes
0answers
49 views
ls -la symbolics… what does that last symbol mean? [closed]
when I type ls -la I get this familiar output...
drwxr-xr-x+ 38 kent staff 1292 Nov 6 11:09 .
drwxr-xr-x 5 root admin 170 Aug 14 14:11 ..
-rw-r--r--@ 1 kent …
1
vote
2answers
123 views
is there a way to look at the preprocessor expanded file in C
Hi
i want to know how could we look at the c file after it has been expanded by the preprocessor before compilation with all the macro values put in the code inside the function w …
1
vote
5answers
59 views
UNIX Learner? Books? Websites?
I am looking to buy a book on UNIX for programming, shell scripts and overall about UNIX, any useful UNIX tutorial websites or books you guys recommend?
