The Unix operating system is a general purpose OS that was developed by Bell Labs in the late 1960s and today exists in various versions. It is known for its large collection of simple command-line utilities which allow powerful file handling and text processing capabilities to be implemented via ...

learn more… | top users | synonyms (1)

1
vote
3answers
2k views

Recording command line input and output on linux with C

Basically I want to do a program almost like a keylogger. The thing is that I as network admin sometimes I don't remember what I did to a machine on certain case, or same times I make howto's and ...
0
votes
1answer
186 views

Forwarding signals to child processes

I have a shell script that starts an ssh session to a remote host and pipes the output to another, local script, like so: #!/bin/sh ssh user@host 'while true ; do get-info ; sleep 1 ; done' | awk -f ...
1
vote
3answers
179 views

what does 0 indicate in socket() system call?

what 0 indicates in following line? what are other flags i can use? server = socket(AF_UNIX, SOCK_STREAM, 0)
5
votes
2answers
285 views

K&R interface for reading directories: superfluous DIR structure?

In the 2nd edition of "The C Programming Language" by Kernighan and Ritchie they implement a simplified version of the UNIX command ls (section 8.6 "Example - Listing Directories", p. 179). For this ...
0
votes
1answer
368 views

execv, select and read

I am creating a child-parent fork() to be able to communicate with a shell(/bin/sh) from the parent through a pipe. The problem is: In a parent I set a select() on a child output, but it unblocks ...
0
votes
1answer
95 views

How to compile '97 C codes using Motif?

Hi I'm trying to compile about 30 C sources written in 1997. Based on required header files such as XmAll.h and Xlib.h and the use of "Widget" syntax, I found that these sources depend on the Motif ...
0
votes
3answers
266 views

Shell script question

I want to execute following command in shell script cp /somedire/*.(txt|xml|xsd) /destination/dir/ But this does not run inside shell script. Any quick help? createjob.sh: line 11: syntax error ...
6
votes
6answers
8k views

Limit the output of the TOP command to a specific process name

If you call the top command, you get all the running processes. But how can I limit the output only to a certain process name like "java"? I've tried this top -l 2 | grep java but in this way you ...
5
votes
2answers
1k views

Creating a daemon with stop, start functionality in C

How to add daemon stop, start and report function to this daemon code? #include <sys/types.h> #include <sys/stat.h> #include <stdio.h> #include <stdlib.h> #include ...
8
votes
2answers
285 views

Is it safe to thread after forking?

I've learned that you should usually stick with either forking or threading to avoid running into very strange and extremely hard-to-debug problems, so until now I always did exactly that. My problem ...
0
votes
5answers
3k views

Memcpy int to char buffer - as alternative to sprintf

#include <iostream> using namespace std; int main() { char buffer[8]; int field=534; memcpy(buffer,&field,sizeof(field)); cout<<buffer<<endl; return ...
2
votes
5answers
3k views

How to diff two file lists and ignoring place in list

I have two lists of files which I want to diff. The second list has more files in it, and because they are all in alphabetical order when I diff these two lists I get files (lines) that exists in both ...
2
votes
4answers
528 views

Is there a good reason to write my own daemonize function instead of using daemon(3)?

There are a lot of example implementations of daemons on the net. Most that I saw do not use the daemon(3) function to run the program in the background. Is that just a matter of taste, ignorance, or ...
1
vote
3answers
13k views

how to read file line by line in shell script and store each line in a variable

i am new in unix. i have to write a shell script which read a file line by line and store it in a separate variable. my text file contents multiple source path and one destination path. something like ...
2
votes
4answers
2k views

Unix shell script: Update timestamp on all sub-directories and sub-files, including those with spaces

Here's what I'm trying to achieve. I have a directory with over 4200 sub-files/sub-directories, all of which need to be set to a certain timestamp. This is a problem because many of them have ...
3
votes
1answer
2k views

UNIX tty command and file command?

I am new to UNIX and when I was reading a book about UNIX, I came across following two problems that I didn't understand. I would really appreciate your help. 1) Look up the man page for the file ...
0
votes
2answers
654 views

grep user name in unix

I want to grep the username. the command id gives the following. id output is uid=0(root) gid=0(root) but i want the output as only root or who ever the user is.
1
vote
3answers
217 views

simple use of function in shell script

I am trying to use the simple fuinction below. But i get error sayin unary oprator expected and the output is always one. Can any1 help me correct it. #!/bin/bash checkit () { if [ $1 = "none" ] then ...
9
votes
1answer
667 views

Is python's shutil.move() atomic on linux?

I am wondering whether python's shutil.move is atomic on linux ? Is the behavior different if the source and destination files are on two different partitions or is it same as when they are present on ...
0
votes
3answers
238 views

Unix write() function (libc)

I am making a C application in Unix that uses raw tty input. I am calling write() to characters on the display, but I want to manipulate the cursor: ssize_t write(int d, const void *buf, size_t ...
1
vote
2answers
203 views

SVN GUI frontends for managing projects and users?

Our hackerspace (091labs.com) is getting a few software projects started at the moment, and we're using Trac and SVN for bug tracking/source control. However, every time I set up a new projects I've ...
24
votes
3answers
38k views

Copying files across computers using SSH and MAC OS X Terminal

Im trying to copy my .profile, .rvm and .ssh folders/files to a new computer and I know how to use the cp and ssh commands but I'm not sure how to use them in order to transfer files from one computer ...
0
votes
3answers
172 views

Weird bug with interupted system call, that I can't debug

I'm working on a batch system (Torque), now the important part is this: When an interactive job is run, the submit tool will communicate with the execution host. This fails on one of the machines. ...
4
votes
1answer
2k views

How to use the pidfile library correctly?

I already read the man page of the pidfile function family. But I don't really understand it. What is the correct usage? Is there a more elaborate example available? I think I understand pidfile_open. ...
9
votes
7answers
3k views

How to prevent a Linux program from running more than once?

What is the best way to prevent a Linux program/daemon from being executed more than once at a given time?
2
votes
1answer
1k views

Conversion between binary and decimal

How do I convert between decimal and binary? I'm working on a Solaris 10 platform Decimal to Binary 4000000002 -> 100000000000000000000000000010 Binary to Decimal ...
1
vote
2answers
445 views

Sending structs through Unix domain sockets

I am using Unix domain sockets to do some interprocess communication in Linux. Upon connection, the client sends a struct using send to the server. This struct contains some information about the ...
0
votes
1answer
163 views

zip archive from a directory tree but only include files with extensions xx1,xx2,…?

What's a combination of commands on MacOS that'll start at the root of some directory tree and create a zip file archive of it, preserving directory structure, but only including files with extensions ...
7
votes
5answers
2k views

What can cause exec to fail? What happens next?

What are the reasons that an exec (execl,execlp, etc.) can fail? If you make a call to exec and it returns, are there any best practices other than just panicking and calling exit?
3
votes
1answer
775 views

Solaris 10: handle gracefully ENOBUFS error when changing socket buffer

I have stumbled on a peculiar difference between Solaris 10 sockets and other Linux/*NIX sockets. Example: int temp1, rc; temp1 = 16*1024*1024; /* from config, a value greater than system limit */ ...
2
votes
6answers
3k views

How to detect using of wildcard (asterisk *) as parameter for shell script?

In my script, how can I distinguish when the asterisk wildcard character was used instead of strongly typed parameters? This # myscript * from this # myscript p1 p2 p3 ... (where parameters are ...
0
votes
2answers
184 views

Printing lines from a file where a specific field does not start with something

I want to print all the lines where 3rd field (fields separated by : ) DO NOT start with # (to signify that 3rd field is a comment). Please note that there may be space(s) between : and #. Example ...
8
votes
1answer
794 views

How VIM Autocomplete Work

I was going over VIM shortcuts & found the CTRL+p which acts as an autocomplete in UNIX (you know what I am saying, a dropdown list of the possible words to use, sorted by frequency of usage). It ...
1
vote
3answers
162 views

Printing lines from a file where a specific field is matched

I have many lines of form: A:B:C I want to print those lines(complete) where the 3rd field (fields separated by :) contain a certain pattern. Example: new/old:california/new ...
0
votes
1answer
1k views

How to convert a decimal into binary and vice versa

how to convert Decimal to binary and viceversa i am working on solaris10 platform can anybody help me with a command Decimal to Binary 4000000002-100000000000000000000000000010 Binary to decimal ...
0
votes
4answers
128 views

Problems compiling file on School's Unix System

COMPLETE EDIT BUT SIMILAR PROBLEM What's the best software/plugin to enable FTP on Eclipse? I'm using FileZilla, but is there something better/easier?
0
votes
1answer
301 views

Mac web sharing: default directory listing name length

I'm sharing a folder over the web using Mac's Web Sharing. Some file names are long and they are concatenated. How do I change the default directory name listing length on a Mac?
1
vote
5answers
939 views

How can I run my program code after fixed intervals?

I have this Perl script for monitoring a folder in Linux. To continuously check for any updates to the directory, I have a while loop that sleeps for 5 minutes in-between successive loops : while(1) ...
0
votes
0answers
326 views

Free Unix Shell with open port? [closed]

I'm in a restricted network,that way I'm looking for a free Unix shell with open port to use SSH tunnelling (remote port forwarding) and thanks.
9
votes
2answers
4k views

return() versus pthread_exit() in pthread start functions

The following program shows that we can use return() or pthread_exit() to return a void* variable that is available to pthread_join()'s status variable. (1) Should there be a preference for using one ...
5
votes
5answers
589 views

a program to monitor a directory on Linux

There is a directory where a buddy adds new builds of a product. The listing looks like this $ ls path-to-dir/ 01 02 03 04 $ where the numbers listed are not files but names of directories ...
7
votes
2answers
4k views

Did I understand /dev/urandom?

I have been reading about /dev/urandom, and as far as I can tell, /dev/random creates cryptographically random numbers by taking advantage of several events like network packet timings, etc. However, ...
2
votes
1answer
3k views

Move all files of same type in multiple directories up one folder

I have about 2000 subfolders in one folder, in each of these folders there are .pdf files. I need a unix command that will move all these files up one folder.
0
votes
1answer
168 views

Why is there no uncatchable coredump signal?

I recently came across an app that froze in a SIGABRT handler with no other signal registered to immediately core dump. Until we standardize leaving one of SIGSTOP, SIGABRT, SIGTRAP, etc., alone, ...
1
vote
1answer
230 views

gzunip -c and gzcat

Could anyone tell why is gunzip -c so much slower than gzcat ? I though they were essentially the same.. cheers, f.
2
votes
2answers
7k views

executing shell command in background from script

how can I execute a shell command in the background from within a bash script, if the command is in a string? For example: #!/bin/bash cmd="nohup mycommand"; other_cmd="nohup othercommand"; "$cmd ...
2
votes
2answers
296 views

Adding User and Group in Unix

Does anyone know the api for adding users and groups in unix and removing them ? I want to do this programatically. Thanks, Frank
2
votes
1answer
328 views

Difference between shared memory and pipe in unix?

what is main difference between shared memory and pipe in unix programming?
2
votes
3answers
814 views

How can I create a thread in unix?

How can one create a thread in unix programming? What is difference between forking and threading? Is threading more useful than forking?
2
votes
3answers
4k views

How to pass multiple parameters to a thread function

I have created a function for a thread, but I want to pass multiple parameters to the function. Here's my source code : #include "work.h" #include <stdio.h> #include <unistd.h> #include ...

1 215 216 217 218 219 275