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
0answers
39 views
Unix '$ ls -a' Command Not Showing All Files or Directories [closed]
I'm using Mac OS 10.8.3.
In Terminal, from Users/*currentuser*/Library/WebServer I noticed the ls -a command is not bringing up all the directories and files in the WebServer folder. When I change ...
0
votes
2answers
42 views
Put specific text at the end of file in unix
I have a html file retrieved using wget. I want to put all links, i.e., all <a href=""> </a>, at the end of file. Is it possible?
For example, consider the following file:
<tr ...
0
votes
0answers
26 views
How to insert more then one value to subprocess.communicate(intput=??) [duplicate]
I want to create a subprocess that get list of files, and return their info. I don’t want to call a new "file" command for every file in the list, but to call the command only once.
To do so, I am ...
1
vote
1answer
54 views
Interaction between programs
I am writing an interactive program which takes speech input from the user that can be be any command from the list of available commands present in the system.
The list of commands will be stored ...
0
votes
1answer
24 views
Reading only one “message” from a pipe each time?
I have two processes connected with a pipe.
One process has several threads writing messages on the pipe.
The other process reads the pipe and process the messages.
The problem is that, when the ...
0
votes
0answers
18 views
SSH File Transfer: Unix Client, Windows Server. HEADACHE [closed]
So I'm on my mac, and have ssh access to a Windows Server, which I can view and cd around etc. But I'm unable to transfer files using scp or anything. It just times out. I think the version of SSH the ...
0
votes
3answers
50 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 ...
4
votes
1answer
66 views
Signal number to name?
How can I quickly get signal name from its number?
There is strsignal(), but I just want the name, e.g. SIGUSR1
In other words, if we have macros like
SIGUSR1 -> 12
do we have anything like
12 ...
-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 ...
0
votes
0answers
39 views
short alias for file in bash command [migrated]
I want short way to access files, which i usually use in bash.
For example, see logs. Now i use:
less /var/log/user/server.log
less /var/log/user/server2.log
I want shortcut, to do
less server.log
...
1
vote
1answer
28 views
UNIX Full Outer Join creates duplicate entries items despite correct order? Could it be the unpaired items creating disorder?
I have two files that I want to join based on their first column.
They are sorted, and not all of the values in the first column in FILE1 are in FILE2, and viceversa.
FILE1.TXT looks something like ...
-3
votes
2answers
38 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 ...
0
votes
1answer
58 views
Meta programming and runtime code generation
I have a requirement where I need to generate the function arguments at runtime.
At compile time, I do not know the number of arguments or their type. It has to be read from a file at runtime, ...
1
vote
2answers
47 views
What is the proper way to create library files with a Makefile? [C]
I am making my first Makefile for a simple shell system. I need to make library files but for some reason the library section is not working out. In the error message it says the library files do no ...
0
votes
1answer
38 views
How to loop through stdin & pipe output to a child execl command in C?
I have been trying to figure out how to loop through stdin from a file, then send it to a child process who sorts int using execl(). The code below works in that it takes the file & sorts the ...
-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
72 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 ...
1
vote
1answer
43 views
sort negative value in Unix
I have a problem when i want to sort a file like this
ce point de l ordre du jour -0.000000004070935
au sein de la commission des libertés 0.000000004017626
du conseil de sécurité de l onu ...
0
votes
4answers
42 views
Error in while loop in bash shell
I am beginner in UNIX. I am getting a silly error while writing a while loop.
Code:-
$ x=0
$ while [ $x -lt 10 ]
> do
> echo $x
> x=´echo "$x + 1" | bc´
> done;
I am getting the ...
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
1answer
50 views
C/Unix Strange behaviour while using system calls and printf
I'm a newbie, trying to really understand systems programming. In the following program, I'm reading a file called 'temp1' (containing 1 2 3 4) and printing its contents to stdout. However, I also ...
-1
votes
3answers
86 views
How to find number of columns in shell script?
I am having text file say 01-01-2013.txt and it has contents as below
cat 01-01-2013.txt | cut -d',' -f1-10 | head -6
...
0
votes
1answer
30 views
Delete specific line up to the last
I was reading this question on removing specific lines, but how about from a specific line up to the end of the file?
My guesses (wrong though):
sed -e '2d-$d' foo
while this removes the 2nd and ...
0
votes
0answers
53 views
How to pipe stdin to a child and execl cat in C
In the code below, I am simply trying to send a file via stdin to a child process which will exec the cat OS command. The code compiles fine. Here is how I call it from the command line:
$ ...
0
votes
2answers
72 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 ...
0
votes
2answers
27 views
Unix Shell file transfer
I just started using Unix and I need to copy of few files from my class folder to my MAC.
Files are lab1.txt and lab1script, unix host is myname@stdlinux.myschool and directory is ...
2
votes
1answer
75 views
How to open a URL from terminal
I'm writing a script to run on android's terminal and I need it to open the browser and a URL.
I managed to open the browser but didn't find a way to put the URL on it.
am start -a ...
2
votes
0answers
42 views
Place contents of last command line output into clipboard [migrated]
I want to be able to run a command in my Terminal, and then quickly be able to copy the contents of the output into my clipboard without leaving my keyboard. Is there any way to do this?
0
votes
0answers
15 views
How to compare memory dumps in iOS?
I made 2 memory dump files with iOS, and I want to see the difference between these files. I made them with gdb (idk if this is important or not). I read a tutorial to do these dumps, and he said ...
0
votes
1answer
34 views
Split paragraphs of text file into multiple files based on empty line between each
Previously I asked same sort of question but didn't succeed might be I am not clear in my previous question. Here is the file where I want it to split into 3 files based on empty line between each ...
-4
votes
2answers
65 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
34 views
Remove rows in a csv which has a specific entry in one column and entries in other columns are repeated
I have stumbled upon this problem, which I solved, by hook or by crook. But I need your help in a precise solution. Being a beginner in awk/sed, I could not solve it with a one liner (which I am sure ...
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
29 views
Getting Job Downtime in a Logfile if it has a duplicate
I'm trying to figure out how to determine the corresponding restart time (the last restart before job finally completed) of a specific job that abended (abnormal termination).
For example:
Job ABC ...
2
votes
6answers
51 views
Using regex to extract a substring while excluding a certain phrase
Say for the string:
test.1234.mp4
I would like to extract the numbers
1234
without extracting the 4 in mp4
What would the regex be for this?
The numbers aren't always in the second position and ...
0
votes
1answer
24 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
1answer
44 views
Filter out HTML code with grep
I am working on a project using a bash shell script. The idea is to grep a wget retrieved page, in order to pick up a certain paragraph on the web page. The area I would like to copy, usually starts ...
0
votes
2answers
34 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
79 views
How to updated node-gyp and/or interpret “node-gyp rebuild 2> builderror.log)”?
I wanted play around with mongo-client by Raynos. However, when I add "mongo-client" : "0.2.1" to my package.json dependencies, I get the following:
(node-gyp rebuild 2> builderror.log) || (exit ...
0
votes
1answer
26 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= ...
0
votes
1answer
26 views
Tab space following \ when using mkdir causing wrong directory created
When I use the below script, a [tab] causes mkdir to combine multiple calls together:
#Ends with a \[TAB] which screws up bill
SubTestCase := \
zack \
...
3
votes
1answer
23 views
UNIX-based chatroom::storing each character using getch(), POSIX threads
all.
I am having a small issue with unix-based chatroom which utilizes the P-thread library
and BSD sockets.
At this point, a client is able to connect to the server, login with his desired ...
2
votes
2answers
33 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:
# ...
-1
votes
0answers
43 views
send soap message to webservice using curl with attachment
I am required to call a webservice and wait for results using UNIX BASH.
I figured I could use CURL.
The problem is that i need to send to the webservice a zip file as an attachment.
Has anyone ever ...
1
vote
1answer
45 views
How to convert a directory to a string?
I have I symlink named CURRENT pointing to a directory , lets say
CURRENT -> $HOME/local/java/jdk1.8.0
I want to extract the jdk1.8.0 part as a string.
First, I get the directory by :
...
1
vote
1answer
49 views
a shell script to copy a folder and all it's subfolders, but noit it's files
I need a shell script to copy a folder and all it's subfolders, but not any of it's files. The more portable (osx, linux, cygwin) the solution is, the better.
-5
votes
0answers
36 views
Calling executable file (scripting) [closed]
if you have an executable file called “script”, containing:
read first second
echo $first
echo $second
and you call it with:
echo This is a line of input | ./script
What do you see on ...
0
votes
0answers
37 views
unix .sh script in a java program - how to make .jar work fine
I have wrote a script .sh and a little java program.
I have included .sh file in java with this:
try{
ProcessBuilder pb = new ProcessBuilder(script_directory,
...
-4
votes
0answers
54 views
Regular expression (trying to match words bash)? [closed]
I need help with regular expressions in unix, bash shell. What words would the regular expression "[hsm]ea[lt]" match? This requires a simple answer.
0
votes
1answer
20 views
how to use FILENAME to set different files in awk
i have two files lets say...
1) student records having information like id,name and city
2) student marks having id ,totalmarks,percentage
Student Records (file)
101 | nik | mumbai
102 | zeel | ...




