Tagged Questions
0
votes
1answer
20 views
unzip but extract only certain fileds using unix
I have a large text file 5-6 gigs 61,213,301 lines. it is in a comma delimited state.
field1,field2,,,field5,,,field8...
Since I don't want to extract the whole thing to a csv (more like I ...
1
vote
1answer
30 views
unix linux shellscript programming printing input arguments containing multiple words
I am trying to write a shell script for which 1st 2nd and 3rd...n argument contains multiple words
MAILING_LIST="abc@gmail.com xyz@gmail.com zed@gmail.com"
echo $MAILING_LIST
mailing "Error in Job" ...
0
votes
1answer
39 views
How to capture file names and check for date part in the filename in Unix code?
I am a newbie to linux and I have a requirement where I need to capture the file names, check the date in the file names and proceed and load the data from all the files only if all the file names ...
0
votes
4answers
90 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
36 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
3answers
51 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 ...
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
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 ...
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
1answer
52 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.
...
-5
votes
0answers
51 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
1answer
30 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
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
1answer
38 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
32 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 ...
0
votes
0answers
10 views
capturing copy operation via FTP client
I attempt to copy a file from a cloud machine to my local machine via
ftp. I'm using a client sftp-server (like FileZilla or WinSCP).
I want to know how can I intercept that copy operation? ...
1
vote
1answer
27 views
unix : how does a “./process | sort” work?
To debug some map/reduce jobs I often test them using a simple unix command that basically reads
cat data/* | mapper | sort | reduce > out
Now everything works just fine, but I'm wondering what ...
0
votes
2answers
36 views
“Argument list too long” in display all list elements
I would like to dump the content in a list, but I have no idea how to solve this problem now.
When I try to display all elements in the list, shell shows:
arguments list too long
in Makefile:
...
-1
votes
0answers
21 views
udev rule not working on Debian [closed]
Good morning !
I have created a udev rules which is supposed to mount a usb device, backup some datas et cleanup everything. I am actually working on a Debian server.
There is the information about ...
0
votes
4answers
87 views
Sort entries of lines using shell
Considering the following input and output:
infile | outfile
1 3 5 2 4 | 1 2 3 4 5
2 4 5 | 2 4 5
4 6 2 1 | 1 2 4 6
Is there any combination of UNIX programs, not involving ...
0
votes
1answer
33 views
nohup redirection command difference
What is the difference between these 2 below lines?
nohup $CATALINA_HOME/bin/startup.sh $CATALINA_HOME 2> /dev/null &
nohup $CATALINA_HOME/bin/startup.sh $CATALINA_HOME > /dev/null &
...
0
votes
1answer
27 views
makefile compile with gcc UNIX
Trying to make makefile to turn all .c into execute files in directory.
For example:
am.c
2.c
s.c
into
am
2
s
programs.
Anything works,but it uses cc, but I want to use gcc compiler.
How can I ...
0
votes
1answer
36 views
Shell script permission denied when conditional test
Whenever I try to run my shell script, I'm getting an error under 4 different if tests.
script.sh 45: script.sh: : Permission denied
script.sh 52: script.sh: : Permission denied
script.sh 59: ...
0
votes
4answers
52 views
How do I replace : characters with newline?
I looked at a very similar question but was unable to resolve the issue Replace comma with newline in sed
I am trying to convert : characters in a string. This is what I tried:
echo -e ...
0
votes
0answers
14 views
Is it possible to put foreground process into background without suspending (control +z)? [migrated]
I am running a application which recieves a TCP and UDP packets so cannot suspend process for 1 mills. I intially ran 3 processes of same application, with diff arguments, in background mode using ...
-1
votes
1answer
43 views
How view data that comes from a .GZ File Format on ORACLE SQL?
EXPLANATION OF MY CONDITION AND PROBLEM I AM FIGURING
I find this a bit too complicated, maybe because I am new to this event and the world of LINUX.
So I am here on my PC (WINDOWS 7) then I need ...
0
votes
1answer
35 views
Shell script handle string with sed
I have a text file, each line is one or more file paths separated with space, all the file has suffix dl, e.g.
/some/path/file.dl
/some/other/path/file2.dl /some/other/path2/file3.dl
...
0
votes
1answer
45 views
accept() in message queues IPC UNIX
for (;;)
{
if (msgrcv(msqid, &flag, sizeof(struct flags) - sizeof(long), 1, IPC_NOWAIT)>0)
break;
}
msgsnd(msqid, &message , sizeof(struct messages) - sizeof(long), 0);
...
2
votes
2answers
50 views
Issue with unix sort
This is more of a doubt than a question.
So I have an input file like this:
$ cat test
class||sw sw-explr ...
0
votes
1answer
30 views
decrypting a variable in a scripting environment of Linux
What does $@ in unix shell script signify. For example:
A__JOB="$CLASS $@"
where $CLASS has my java class file name. So what might be the meaning of
$@.
What did I do?
I Googled :) but $@ ...
1
vote
2answers
30 views
variable does not store value while running script from root (unix)
Output variable does not store value of "pbrun tsm_support.ksh -c $i" command while running this script though root.
#!/bin/bash
set -x
for i in `cat /home/unixlist.txt`
do
output=$(pbrun ...
1
vote
3answers
100 views
awk save modifications inplace
I'm learning awk and I would like to know if there is an option to write changes to file, similar to sed where I would use -i option to save modifications to a file.
I do understand, that I could ...
2
votes
1answer
92 views
What does “Syscall()” means in go package “syscall”?
During the research of my another question Go package syscall conn.Read() is non-blocking and cause high CPU usage, I read source code in syscall package.
Since I found my last issue on OS X 10.8.3, ...
0
votes
1answer
41 views
Passing value from one shell script to other
This is what I am trying
script1
var=10
sh -x script2 "$var"
script2
su - someuser << EOF
1
cd dir
echo "This is : $1 Error" >> somefile
2
2
0
exit
EOF
Everything in script2 is ...
0
votes
3answers
51 views
replace infinity loop without new thread
for(;;)
{
...// CPU usage and etc...
printf("Server is up: %.0f sec\n",diff_time); //seconds of running for example
sleep(1);
}
...//other server code
I'm writing ...
-2
votes
0answers
35 views
Unix: soft links & hard links (ln/ln-s) [closed]
This is my homework that I have due for tommorrow. I have completed the tasks using 'ln/ln -s, cp, mv' etc And I'm wondering if what I have completed is correct, because my answer was the same each ...
-3
votes
2answers
39 views
what's wrong in the below awk [closed]
awk -F ',' '$2 ~ /^ *[0-9]*(\.[0-9]+)?" *$/{sub(/"/, "\n", $2);}' sample.txt > out.txt
hi all,
what's wrong in the above awk command, i'm getting only the empty file.
Realted to Need to convert ...
-1
votes
3answers
54 views
Need to convert the below awk command into sed [duplicate]
I need to convert the below awk command into sed,
awk -F ',' '$2 ~ /^ *[0-9]*(\.[0-9]+)?" *$/{sub(/"/, "", $2); print $2}'
Below is my input file:
sample.txt:
3",3"
6-position,6-position
7' 4" to ...
1
vote
4answers
73 views
Find and remove in unix(Updated)
Below is my input file:
sample.txt:
3"
6-position
7' 4" to 10' 3-1/2"
4.8"
Adjustable from 99" to 111" - max 148
and in the output I only need 3, i.e.
output.txt:
3
4.8
So basically I need to ...
0
votes
1answer
46 views
Idiomatic way to deploy a shell script on unix
I'm writing a small script to manage my installed JDK on a linux machine, say for example that the name of the script/function is usejdk.
I come with to ways :
usejdk is a bash function in shell ...
0
votes
2answers
75 views
How to solve this security puzzle in bash? [closed]
As part of practicing with linux tools I've been trying random "bash challenges" and am stuck with one. I'm in a restricted bash shell where I can't cd, and I can't run commands with forward slashes ...
-4
votes
2answers
66 views
Show the list of running processes in C
Can you suggest me a system call that retrieves the current running processes? (I have to write a C function like top)
I tried to read the proc/ folder but is not good in my case.
1
vote
1answer
41 views
Sed command giving unexpected result
Below is the shell script I am trying to find the meaning.
sed 's/19984 $/98400 /' | sed 's/19992 $/99200 /'
I expect 19984 $ will get replaced with 98400 and this string will be passed to next sed ...
0
votes
1answer
26 views
How to erase all pixels of certain color on every file inside a folder?
Is there a easy way to convert all images in a folder, so every pixel with a specific color is removed?
0
votes
2answers
36 views
No Output from grep or fgrep with -f option not working
I have the following regular expression in a file. BTW, im on SunOS
Ex: File pattern contains the following lines:
Ora-[0-9]
violated
I have a file "datafile" which contain the following:
...
0
votes
1answer
27 views
Executing a set of commands inside a new bash instance from as script
I'm trying execute a set of commands in a new bash session:
exec bash <<- EOF
ln -snf $JDK_REPO'/jdk'$1 $CURRENT;
JAVA_HOME=$(readlink -f $CURRENT);
echo $JAVA_HOME;
export PATH= ...
2
votes
2answers
34 views
Perl Directory Finder doesn't work?
I have a script to find Directories and .tar.gz Files. For whatever reason (that's what I'm hoping you can help me with) my
if ( -d $file )
doesn't return that it's a directory!!!
My Script:
# ...




