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 ...
0
votes
4answers
96 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 ...
1
vote
2answers
37 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
45 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
1answer
39 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 ...
-1
votes
3answers
56 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 ...
0
votes
0answers
16 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 ...
0
votes
1answer
16 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
43 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, ...
1
vote
1answer
31 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 ...
1
vote
1answer
40 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
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 ...
-1
votes
0answers
13 views
IPConfig rule with both mac address and to specific destination IP Address [closed]
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
30 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
0answers
26 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
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 ?
0
votes
1answer
59 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 ...
-3
votes
2answers
77 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
50 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
45 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
25 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?
...
0
votes
7answers
88 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 ...
1
vote
2answers
47 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?
0
votes
1answer
56 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
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.
...
1
vote
2answers
62 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
26 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
60 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 ...
0
votes
0answers
46 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
27 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 ...
0
votes
1answer
36 views
Wait until 2 pid write to FIFO(named pipe)
Im trying to make a Tic Tac Toe game with server-client using FIFO(named pipe) and shared memory.
The first step is to write the pid of the client process to the FIFO.
And in the server process i ...
-2
votes
0answers
27 views
Very slow for git checkout and other git features [closed]
We have many computers in our lab. For everyone git checkout finishes in usual time like 30 mins to 1 hour.
But for my pc, I am not sure why, everytime it takes so long, sometimes a whole day.
This ...
1
vote
0answers
38 views
Starting weblogic server in background in Linux
I have installed Weblogic Server 10.3.6, and I use the below script to start my server:
user_projects/domains/my_domain/bin/startWebLogic.sh
I found below command to start the server in background:
...
0
votes
3answers
52 views
Using grep to list lines starting with
I am trying to Use the GREP command to list all lines which contain the letter
'd' at least twice in a row (that is, next to each other), from file "test". But i can't get it to work. Can someone ...
0
votes
2answers
42 views
Replacing with sed wont work
I have a file called "washington", with capital spelled in 4 different
ways: Capital, capital, Capitol, capitol. Use the "sed" command
to replace all of them at once, with the correct spelling: ...
1
vote
3answers
32 views
How to create a file in remote server from local server? [closed]
can anyone tell me how can i store the names of a file that are in remote server to a file and then get the file that contains the name in local server?
there is a remote server where 5 files are ...
0
votes
3answers
46 views
Unix sed command [closed]
I have a file foo.txt containing
12345
123
123456
how do I make a sed command which puts the middle numbers in parenthesis?
so it would look like
1(234)5
1(2)3
1(2345)6
-2
votes
1answer
42 views
Using read command [closed]
I am extremely confused about using the read command. Can someone please explain this to me? For example if I have:
An executable file called script, containing
read first second
echo $first
echo ...
1
vote
1answer
21 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 ...
1
vote
2answers
53 views
Seg fault (core dumped) after pthread_join in C
I keep getting a seg fault (core dump) after pthread_join in my program. It prints out the expected result just fine, but seg faults when joining the thread. I have looked at several other ...
4
votes
1answer
100 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" ...
1
vote
1answer
48 views
Unix sort using unknown delimiter (last column)
My data looks like this:
Adelaide Crows 5 2 3 0 450 455 460.67 8
Essendon 5 5 0 0 622 352 955.88 20
...
0
votes
2answers
88 views
Is parsing human-readable data with awk and bash harmful, a bad practice [closed]
In our C++ class the first module is about bash programming. Our instructor, who often mixes shisms and bashisms and csh compatibility-isms, recently used an example of using awk and bash to get the ...
-1
votes
0answers
19 views
How to start a couple of cshell scripts?
I have to write the following C Shell scripts (I know, C Shell is bad), and I really don't even know how to start so I was wondering if I could get a push in the right direction. I assume they both ...
1
vote
3answers
39 views
Grep part of large file without spliting it
How can I grep a certain part of a large file from lines 1000 to 2000, up to line 1000 or from line 1000 for example?
I don't want to split the file in smaller files.
0
votes
1answer
22 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 ...
0
votes
2answers
28 views
Extracting contents from string in unix
When I run,
ps aux | grep dexter | grep ruby | grep -v grep
This is what I get,
dexter 3285 0.0 0.0 31652 5356 ? S 00:01 0:01 ruby /home/dexter/script.ruby
I have the whole output in a ...
1
vote
1answer
41 views
Linux /dev/null write operation succeeded
I was reading a Wikipedia entry which says : In Unix-like operating systems, /dev/null or the null device is a special file that discards all data written to it but "reports that the write operation ...
1
vote
3answers
36 views
Assign variable from SSH server to local machine variable
I have two scripts that are being run. One runs from a client workstation and calls a script on a server. I need a variable from the server script and I figured I could do it this way, but it isn't ...






