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
2answers
23 views

Calling contextDestroyed Method on webserver shutdown

I have created a webapp which has only one servletContext listner. Below is the code: I had tried with Runtime.getRuntime() but this didnt work. So while googling came across ProcessBuilder but it ...
6
votes
2answers
53 views

Get default / preferred file extension

I can identify file types with file command. Can I get what is default (preferred) extension for the file? For example for tmp_206.file: GIF image data, version 89a, 17 x 17 tmp_202.file: ASCII ...
0
votes
4answers
81 views

Can we change permissions from user to root?

I have a written a C program that creates a file "abcd.txt" and write some data into it. I was executing my code by logging with a username"bobby" and so the file abcd.txt was created with owner as ...
13
votes
9answers
7k views

unix - head AND tail of file

Say you have a txt file, what is the command to view the top 10 lines and bottom 10 lines of file simultaneously? i.e. if the file is 200 lines long, then view lines 1-10 and 190-200 in one go.
1
vote
2answers
31 views

compare as numeric value. unix

So I am trying to test a few things coding in bash. As a n00b I am having some problems with the basics and how irritating it can get using shell dealing with numbers. if $((echo $?)) > 0 ;then ...
0
votes
2answers
41 views

Merging Multiple records into a Unique records with all the non-null values

Suppose I have 3 records : P1||1234| P1|56001|| P1|||NJ I want to merge these 3 records into one with all the attributes. Final record : P1|56001|1234|NJ Is there any way to achieve this in ...
-1
votes
3answers
48 views

Unix shell script error [closed]

If i use ssh -Y username@hostname and reach at another host and type x clock & it is working fine.But if i use it in script In online like ssh -Y username@hostname x clock & ; it gives ...
302
votes
10answers
158k views

In the shell, what is “ 2>&1 ”?

In a unix shell, if I want to combine stderr and stdout into the stdout stream for further manipulation, I can append the following on the end of my command: 2>&1 So, if I want to use "head" ...
0
votes
0answers
13 views

How does Winsock2 listen() blocks?

MSDN says that : Listen() is a blocking call. Code snippet from a function in which i have used listen() is shown below: sockaddr_in addr = {0}; int addrlen = sizeof(addr); SOCKET ...
-1
votes
1answer
38 views

Advanced Unix Programming - Chapter 1 shell code error

I noticed the following code of a simple shell program from the latest edition of Advanced Unix Programming did not run properly and compiled with a warning about comparing a pointer and integer in ...
0
votes
0answers
14 views

How to extract the error from core dump file

I am writing a script to find all the core files on production server and check process name from which it came. How can i check in core file from which process it came and what made it to create. I ...
2
votes
3answers
3k views

Fast search for text in files in a directory in unix?

Is there a good solution for performing searches similar to find . -name "*.*" | xargs grep "some text" but with much faster search, due to offline indexing. Support for wildcards or light regular ...
0
votes
1answer
11 views

Creating multiple child processes with a single pipe

I need to create three child processes, each of which reads a string from the command line arguments and writes the string to a single pipe. The parent would then read the strings from the pipe and ...
1
vote
2answers
37 views

How do I communicate between a server and a client using sockets? [C]

I am doing a Unix, C assignment. I am creating a Server and a Client which will interact with each other. I am pretty sure I have set up the basic framework but I when I try to send/receive messages, ...
-3
votes
2answers
69 views

How to rearrange text file output result

I would like to write a unix script that do the following to have the ff result: textfile1 contains the following text: keyval1,1 keyval1,2 keyval1,3 keyval1,4 keyval2,1 ...
0
votes
1answer
24 views

OCaml Debugger: Exception uncaught

I'm trying to use ocamldebug. My program makes a lot of things and then write in a file. It compile and works fine, but when i use the ocamldebug and reach the part that it will write the file, the ...
22
votes
7answers
23k views

Change current directory from a script

Is it possible to change current directory from a script? I want to create a util for directory navigation in bash. I have created a test script that looks like the following: #!/bin/bash cd ...
1
vote
1answer
36 views

Can I change the input color of my bash prompt to something different than the terminal default

My default terminal color is gray, that's fine. My bash prompt displays a bunch of colors, this works fine: PS1="${COLOR_RED}\u${COLOR_WHITE}@${COLOR_RED}${COMPUTERNAME} ${COLOR_BLUE}\w${GITPROMPT} ...
0
votes
1answer
34 views

Purpose of issetugid?

According to the man pages for issetugid, the call is supposed to either (1) alert to uid/gid changes; or (2) alert to a possible tainted environment. The function name suggests a third purpose. ...
0
votes
1answer
25 views

What does this paragraph in the ps man page mean? [closed]

I could not understand the following description: a Lift the BSD-style "only yourself" restriction, which is imposed upon the set of all processes when some ...
51
votes
8answers
2k views

fork() and output

I have a simple program: int main() { std::cout << " Hello World"; fork(); } After the program executes my output is Hello World Hello World. Why does this happen instead of a single ...
0
votes
0answers
11 views

IPConfig rule with both mac address and to specific destination IP Address

I'm trying to add a rule where if the traffic is from MAC Address 12:34:56:78:90:AB and to 1.2.3.4 to target NETMON I've tried iptables -t nat -I PREROUTING -m mac --mac-source 12:34:56:78:90:AB -d ...
-1
votes
2answers
29 views

Unix: cat-ing a file out to itself - why does this blank the file? [duplicate]

Can someone please explain to me why this code works (i.e. file2.txt is the alphabetically sorted contents of file1.txt): cat file1.txt | sort > file2.txt But when I do this, file1.txt blanks ...
0
votes
1answer
55 views

unix: how to tell if a string matches a regex

Trying out fish shell, so I'm translating my bash functions. The problem is that in one case, I'm using bash regexes to check if a string matches a regex. I can't figure out how to translate this into ...
0
votes
0answers
18 views

Zsh and environment variable : how to track changes? [closed]

How can I control or trace the mutations made on my zsh environment ? Here is the problem : When I edit a brew formula, it uses vim as an editor. Which makes sense as I have ~ ❯❯❯ env EDITOR=vim ...
0
votes
7answers
78 views

concatenate several file remove header lines

What'd be a good way to concatenate several files, but removing the header lines (number of header lines not known in advance), and keeping the first file header line as the header in the new ...
0
votes
0answers
9 views

xinu clkint.c operarating system

I know that 'tod' counts how many clks where taken from the begining of the program. Is it possible to count how many clks where taken in one second for example ?
1
vote
1answer
19 views

Default sort order for (P)SCP

Is there a default sort for the order in which PSCP downloads files from a remote server and if so, what is it? I can't get an accurate read on how far along my download is, so I'd like to compare the ...
0
votes
1answer
36 views

Creating my first Unix Server/Client but getting a “shmget: Invalid argument” error and possibly more. [C]

I am doing a Unix, C assignment. I am creating a Server and a Client which will interact with each other. I am not very experienced with TCP/IP programming so I apologize for being slow in advance. ...
3
votes
1answer
43 views

How do i create random numbers that are nonrepeating using applescript

Trying to figure out how to create nonrepeating numbers using applescript. If I want random numbers only 1 or 2, i would want my result to be [1,2] or [2,1] and never [1,1] or [2,1]. So I just ...
0
votes
3answers
28 views

posix shell script: recursively remove all files starting with a certain prefix

I want to use a shell script to remove recursively all files starting with the prefix ._ (matching the pattern ._*) in a certain directory, but the embarrassing thing is that I barely know anything ...
1
vote
1answer
19 views

How to get the PID of matlab when using the MATLAB Engine?

When using the MATLAB Engine interface, how can I get the process ID of the matlab process that is started? Or how can I launch the matlab process in a way that would allow me to also get the PID? ...
43
votes
11answers
14k views

How to determine the current shell I'm working on?

How can I determine the current shell I am working on? Would the output of the ps command alone be sufficient? How can this be done in different flavors of UNIX?
1
vote
2answers
44 views

Difference between && and -a in BASH

From what I know, && and -a both provide the conditional AND function in an expression for a BASH shell. Is there any difference between the 2 of them?
31
votes
13answers
52k views

How to pipe list of files returned by find command to cat to view all the files

I am doing a find and then getting a list of files. how do I pipe it to another utility like cat (so that cat displays the contents of all those files) and basically need to grep something from these ...
4
votes
5answers
2k views

Why can't files be manipulated by inode?

Why is it that you cannot access a file when you only know its inode, without searching for a file that links to that inode? A hard link to the file contains nothing but a name and a number telling ...
0
votes
1answer
49 views

Parsing the output of SGE's (qstat -j “*”) using AWK or Perl

I have the output from SGE qstat command that looks like this: http://dpaste.com/1177012/plain/ It is obtained with the following command: $ qstat -j "*" What I want to do is to parse the ...
0
votes
1answer
52 views

Relative path to parent directory in '/etc/profile' file of portable git on MS Windows

How can I specify relative paths in Git's /etc/profile file (specifically, a relative path to the parent directory of the one that git.exe is called from)? Background I'm a huge fan of making your ...
1
vote
1answer
701 views

procmail lockfile utility and NFS

Has anyone used the lockfile utility that ships with procmail in conjunction with NFS mounted directories? The lockfile man page states that "Lockfile is NFS-resistant and eight-bit clean."
1
vote
2answers
47 views

Export a variable to the environment from a bash script without sourcing it

suppose that I have this sript export.bash : #! /usr/bin/env bash export VAR="HELLO, VARABLE" when I execute the script, and try to access to the $VAR I get no value ! echo $VAR Is there any ...
0
votes
0answers
25 views

Difference between different Unix like OS [closed]

I used Linux for years now and wish to get a better idea of other Unix like OS. This may sounds weird but I'm wondering if someone can provide me a general introduction and/or references about the ...
-5
votes
0answers
48 views

Shell Scripting Exercise [closed]

Do you have some sample shell script exercise problems that one use to learn Shell Scripting like a "Problem solving" approach. Right from simple to complex. I tried to google it but didn't find much ...
4
votes
1answer
88 views

Very strange behavior - printf & strcmp ignore my input string in only one line

this is the code: printf(" DEBUG:%s\n" ,array[7] ); printf("address of %s is %p (again %d)\n", array[7], array[7], strcmp("N\\A", array[7]) ); printf("5DEBUG collection:%s\n" ...
0
votes
0answers
45 views

How to issue unix commands from an ios app

How to issue unix commands inside a ios app? For example, I would like to know if there is any library to load that performs a whois command from the system where the app is installed.
0
votes
0answers
9 views

.NET return time since Unix Epoch

Hi I was wondering if there is a way to return time since Unix Epoch if given a normal date/time? I'm using a language based off of .NET, and have the date formatting options of .NET at my disposal. ...
0
votes
1answer
20 views

How to delete multiple lines of special characters in vi editor

I would like to delete multiple lines from a text file using vi editor.I can actually grep on such special patterns and list out them but how can I delete them from a file on the fly.Please share your ...
-1
votes
1answer
72 views

File editors with sudo su option [closed]

I need to know if there is any file editor (like beyond compare) which enables me to login to Unix box with sudo su - option and i can compare/modify files.
0
votes
1answer
20 views

Loop through 3 tables in a .dat file

I have a .dat file, which contains a list of tables from a Oracle database. The file has 3 tables Tab1 tab2 tab3 How can I loop through these 3 tables? I would expect 3 cycles (one per tab) but I ...
6
votes
5answers
5k views

How can I add a help method to a shell script?

How do I check if a -h attribute has been passed into a shell script? I would like to display a help message when a user calls myscript.sh -h.
1
vote
5answers
60 views

Join broken lines with perl/awk

I have a huge file with sql broken statements like: PP3697HB @@@@0 <<<<<<Record has been deleted as per PP3697HB>>>>>> FROM sys.xtab_ref rc,sys.xtab_sys f,sys.domp ...

1 2 3 4 5 276