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)

2
votes
6answers
55 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
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
1answer
45 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
38 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
91 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
28 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
27 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
25 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
36 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
47 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
58 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.
0
votes
0answers
49 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 | ...
0
votes
2answers
44 views

Using SHELL BSD “date” command for conversion to Nanoseconds?

I need to convert a time to nanoseconds, the bsd date command isn't suitable, as the best it can returns are seconds.. date +"%H:%M:%S" returns 17:33:07.. Seems there is a difference between Mac's ...
-3
votes
1answer
34 views

How can I see the options of any bash or Unix command [closed]

I am learning some bash and was wondering what the easiest way was to get a list of all options of a command. For example, I was just using the 'read' command in bash and didn't know what the options ...
0
votes
0answers
87 views

Java exception when spring loading context configuration file - occurs in UNIX but not Windows

I've been stuck with this one for a while now. I have created a mini subset of the project where this occurs and reproduced the issue. Basically I'm running a test which loads a spring context file ...
4
votes
2answers
108 views

Is there any efficient way to get panic log of Go program under Unix easily?

Since I'm running a Go program as server, I need some mechanism to catch panic log if anything goes wrong for later analyze & debug. Is there any efficient way to get panic log of Go program under ...
0
votes
1answer
21 views

How to link properly in Makefile?

This is my makefile: cpp2html: cpp2html.o lex.yy.o gcc -c cpp2html.o lex.yy.o cpp2html.o: cpp2html.c gcc -c cpp2html.c lex.yy.c: cppscanner.l flex cppscanner.l lex.yy.o: lex.yy.c ...
2
votes
1answer
39 views

see variable definition by tooltips in vim

I need to frequently check definitions of variables/functions. I can jump to definitions of variables/functions by ctags with gd,gD, ctrl ] etc. But by it, I jump from my current position and lose ...
1
vote
2answers
49 views

How to get a particular word from a particular line from the output of unix command in shell script?

I want to run a command in shell script for ex ls -al and want to get 3rd word of 5th line how can I get can anyone help. What I was trying is str = $(ls -al foo | cut -d" " -f3) this is storing ...
1
vote
3answers
56 views

delete a line if a condition occurs using awk or sed

just need your help with this one. i want to delete a line if this format occurs using either awk or sed: BSC+number BSC+number For example: BSC112 BSC112 core tag red ...
0
votes
1answer
29 views

Substitution of a string with another string

can anybody please tell me what does this command precisely do : sed -e 's/(return status = 0)//g' -e 's/\-//g' | sed 's/ //g' I am not able to understand which string does this command substitute ...
0
votes
1answer
69 views

How to restore Sublime Text settings & preferences and undo the symlink created in Dropbox?

How can I restore Sublime Text settings & preferences and undo the symlink created in Dropbox? I cannot access the Sublime Text 2 Preferences on my machine after creating symlink on Dropbox. ...
0
votes
1answer
23 views

Solaris: gdb a.out > run > opens subshell?

Haven't found anything about this. Trying to learn gdb and I get the feeling I'm doing something wrong. I compile the c program with gcc -g program.c -o a.out then use the command gdb a.out ...
0
votes
2answers
42 views

Using POPEN to store a value to a string using C programming

I am trying to write a C code under UNIX to read the third word from each line of a text, and store it to a string by using POPEN. However my code is giving me an error (Modifiable lvalue required ...
0
votes
3answers
36 views

Trying to print words in a file with C child processes

The goal is to create a child process for each word in a file, and have the child process print the word. The file only has the following five words, each one on a separate line: Aachen Biscay Capri ...
-1
votes
0answers
31 views

Tmux copy mode mouse selection behavior is strange [closed]

In TMUX (all versions I have tested: 1.5, 1.6, 1.7, 1.8), when the mouse is used to select a buffer from a pane in Copy Mode, I notice that it causes the terminal's cursor position to flicker across ...
0
votes
1answer
75 views

Teradata - run a file/script at Unix Linux command prompt

I have the client/TTU installed on Unix box for Teradata. If I do the following, it works. Where "..." is Teradata BTEQ normal output and once the following is done, I'm back at the prompt. $ bteq ...
-4
votes
1answer
40 views

Search multiple patterns[separated by newline] in the same text line using grep [closed]

I have a text file which looks like : 12345 12-02-2013 05:12:23:234 searchPeople service called by the follwoing input : name : Tom id : 12345 regd_no : REGD1234 ...
0
votes
1answer
23 views

Prevent a command in a shellscript from being executed inside another shellscript

I am invoking a shellscript inside another shellscript, and the invoked one has a command to delete a folder, which I don't want to be executed, like this $ rm ../temp -rf Is there a way to prevent ...
-2
votes
0answers
30 views

Linux clear inodes folder [closed]

I have got dedicated server that use the inodes up to 93%. I am not really an server expert. i have tried this method from link Howto Free Inode Usage but im not going anywhere. *it gave me ...
0
votes
2answers
25 views

alarm stop's when signal arrive

I'm trying to combine signal and alarm. I have 2 Processes. 1 is receiving input from the user, and write it into pipe and then sending signal (SIGUSR2) to the other Process. In the other Process, i ...
0
votes
1answer
75 views

Bash, splitting files from directory into groups by size (low peformance)

I have a problem with my Bash script to split all files from directory into groups where each group size is 1GB. I have a script that looks like this: #!/bin/bash path=$1 unset i echo $path start ...
0
votes
0answers
14 views

Home folder in the vmargs

once again, I have a question :-). How can I take a relative path to my home-folder in the vmargs? I'm using Mac. I just tried ~/ and $HOME as well as /~/ and/$HOME/. But this doesn't work. If I ...
1
vote
1answer
40 views

How to print column offset within each matching line in grep

By passing -o -n to grep I can output all matching parts of a pattern within a file, and the line number on which each match was found. How can I also print the column offset within that line at ...
1
vote
0answers
42 views

print specific line and then some more [migrated]

I am trying to search a file for a pattern and if the it is found I want to see the line and 10 more lines of the result. so far I have grep -n pattern file | cut -d: f1 now not sure how to use ...
0
votes
2answers
47 views

I tried various cut commands but unable to get the output I desire

cat DecisionService.txt /MAGI/Household/MAGI_EDG_FLOW.erf;/Medicaid/MAGI_EDG_FLOW;4;4 /VCL/VCL_Ruleflow_1.erf;/VCL/VCL1_EBDC_FLOW;4;4 /VCL/VCL_Ruleflow_2.erf;/VCL/VCL2_EBDC_FLOW;4;4 I tried this: ...
0
votes
1answer
16 views

No rule to make target in Maefile

I'm learning to write makefiles. I made my own simple one just to try and test, but every time I run make, i get: make: *** No rule to make target `/%.cpp', needed by `obj'. Stop. I googled. I'm ...
0
votes
2answers
64 views

How to print hexadecimal double in C?

I have this number in hexadecimal: FFFFFFFFFFFF and I need to save it, so I used double double a=0xffffffffffff; but I need to print it and I don't know how to. Each time I use %f, %d, %x, it ...
0
votes
1answer
37 views

sed command to serch string and append a line after searched string

I have a file test, with the content Hi Hello I am good. My requirement is I have to write a shell script to search Hello sting in the file test and add a new line after it with the content got ...
1
vote
2answers
34 views

Pattern matching on Oozie logs

Oozie Command Used oozie jobs -oozie http://localhost:11000/oozie -localtime | grep "2013-05-08" > Input.txt Oozie log (Input.txt) 61-oozie DProSUCCEEDED chronicles users ...
1
vote
2answers
32 views

modify only one column of a big file and keep field seperator the same in unix

I have a very big file (more than 10000 columns). I would like to change 3 entries in the second column and keep anything else the same, including the field separator. For example: ab123\t123\t0.1 ...
0
votes
1answer
30 views

Can I use setlocale() and isalpha() to determine if character belongs to alphabet of current locale?

Is it possible to do setlocale(LC_CTYPE, "ru_RU.utf8") and for each symbol of string "рус eng" do isaplha() check and to get as result following: р alpha у alpha с alpha not alpha e not alpha n ...
1
vote
5answers
123 views

How to merge several lines in the same textfile in Unix

I have a text file and I want to put the contents of the lines into 1 single line. For example. I have a text file named WEEE.txt and it contains: BSS100 PROF K BSS101 TREES E BSS102 TRUNK R, ...
-1
votes
1answer
60 views

How to transfer one line to another in Unix

Supposedly i have an image below. I want the A13728, J02448 (and so on) up to S13319 on the same line instead of having entered. This image is from PuTTY and i create a script to save it to a text ...
0
votes
2answers
30 views

Transfer one line of text to another line in the same textfile

I would like to know if there is a particular code for tranfserring one line of a text to another line in the same text file in Unix? Supposedly i have Wow.txt and it contains: The quick ...
1
vote
1answer
52 views

Removing non alpha characters in C

Is there an easy(ish) way to replace all non alpha characters from a character array with a space such as you might do with the bash command below? sed 's/[^a-zA-Z]/ /g' The only thing I can think ...
2
votes
2answers
32 views

can't get stdout of gvim into a bash variable

While trying to answer this question I'm experimenting with gvim --echo-wid which I think will work with xdotool. Perhaps it's just brainache but I'm having a hell of a time getting the output of ...

1 3 4 5 6 7 277