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
0answers
18 views

Is there any way to get very precise information (number of used bytes, number of CPU instructions) about process in Unix?

Here is the problem: there is a set of programs written in different languages (mostly Perl and Python). Every program x reads lines from stdin, does some work (parses line, updates data structes, no ...
-1
votes
0answers
12 views

Configure Clock on different port other than port 80 in CentOS

I installed CentOS 6.4 & noticed that port 80 is being used by Clock application [root@l-22733-p11 logs]# lsof -i tcp:80 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME clock-app ...
0
votes
1answer
18 views

how to read windows file in linux environment

I'm trying to execute a python program on linux which i first created it on windows, but the following error is shown: metadata = eval(metafile.read()) File "< string >", line 1 @ @ @ @ @ ...
0
votes
0answers
8 views

Custom InstallAnywhere location for .com.zerog.registry.xml file on linux

I'm running into an issue where I do not have write access to the /var directory on a UNIX environment, and InstallAnywhere doesn't provide me the option of writing the .com.zerog.registry.xml to any ...
0
votes
0answers
15 views

Date time format in UNIX crontab

I'm running a cron every 6 hours to backup my database. I want the filename to contain the date & time it was created in the following format: mysqlbackup_22/5/2013_15:45.sql.gz This is the ...
0
votes
3answers
26 views

Renaming Multiple Files in Unix

I have files in below format EnvName.Fullbkp.schema_10022012_0630_Part1.expd EnvName.Fullbkp.schema_10022012_0630_Part2.expd EnvName.Fullbkp.schema_10022012_0630_Part3.expd ...
0
votes
1answer
22 views

Make JVM/Solr not swap, using mlockall

I saw ElasticSearch provides the mlockall option which permits to keep the JVM heap inside physical memory instead of virtual memory (which may or not be physical), and to avoid swapping the heap. Is ...
1
vote
6answers
54 views

Printing lines from a file using an input file that contains the line numbers

I have a file numbers.txt that contains a number on every line. I want to use that file to print out the lines in the file lines.txt, i.e. the lines that correspond to the numbers in numbers.txt. ...
2
votes
8answers
82 views

Unix command to convert multiple line data in a single line along with delimiter

Here is the actual file data: abc def ghi jkl mno And the required output should be in this format: 'abc','def','ghi','jkl','mno' The command what I used to do this gives output as: ...
0
votes
1answer
71 views

FileNotFoundException while creating a file with java in Ubuntu?

I have been trying to convert millions of xml documents to txt files. After reading each xml I parse the required content and write it into a new text file in a new drectory. But when I process some ...
2
votes
1answer
27 views

unix find and replace characters with strings for multiple characters

I want to replace all occurrences of certain characters in my file with words. My question is, can I do that for all the characters using a single command. I am using the following command for ...
2
votes
3answers
44 views

Generate valid Unix username and password in Perl

I need to generate a username and password pair in order to create user on a Unix system, preferably a pair that would be hard to guess (for security). Does anyone know any good way of doing this ...
-1
votes
0answers
19 views

Unable to delete files created by cron job [closed]

There is a shell script which executes a jar file. When this shell script is run manually, the files created in java class can be deleted by other user in UNIX system. But when I am trying to run the ...
1
vote
1answer
40 views

bash set -e: How to find out on which line the script exited on?

I have a very high level and complicated script which I basically need to debug with set -e on (because I'd like it not to run expensive operations in a loop as I work out the logic), but it is ...
2
votes
2answers
51 views

vim folding - how to copy unfolded lines

I would like to copy/delete all the lines except the folded lines and vice-versa. How do I do that? It is ok if I have to use a plugin for that as well. But, I would love to have that functionality.
-6
votes
0answers
54 views

sh: 1: Syntax error: “(” unexpected [closed]

I get this error after I slightly modify sample.cpp file. And I know that this modification is not the reason behind this error. SO i'm trying to figure it out. I'm using "./sample" to run executable. ...
3
votes
1answer
33 views

c copy file permissions from another file

What's the simplest way to copy the unix file permissions of a file and set them to another file? Is there a way to store a file's permissions to a variable and then use that variable to set those ...
3
votes
2answers
37 views

Convert charset from a entire project to utf-8

Hi i have a project made in windows who uses windows 1252 charset and i need to convert all my .php file to utf-8 charset because my database is all utf-8 encoded. Is there a way to do that using ...
1
vote
1answer
57 views

Comparison of two files with awk command

I have got two files, say file1 and file2, to be compared and put it in file3. file1: red green blue red yellow pink orange file2: domain1,red,- domain2,-,green domain3,blue,- domain4,yellow,pink ...
0
votes
1answer
16 views

How to rxecute an ad-hoc stored procudure in UNIX shell script? Also is it possible to have IF-ELSE/WHILE LOOPS in sql-plus?

I have a three part question which arises out of my following requirement. I have been asked to automate some stored procedures using shell scripts. Earlier the nature of the stored proc(not the ...
3
votes
4answers
68 views

What occurs when you type quotation mark " in shell terminal

I have been searching the web for this but I can't understand what the unix shell terminal is doing when you just type a quotation mark " $ " and it gives you something like that > where you ...
1
vote
1answer
36 views

How to decompress lzo_deflate file?

I used LZO to compress reduce output. I tried this: Hadoop-LZO project of Kevin Weil and then used LzoCodec class with my job: TextOutputFormat.setOutputCompressorClass(job, LzoCodec.class); Now ...
0
votes
0answers
21 views

Issues while using script (typescript) command with rksh restricted ksh

I have a scenario where I want to log every activity for a particular user. I have a script built around the script command which I invoke from the user's .profile. Now the requirement is that the ...
0
votes
0answers
34 views

Runing map reduce job by unix

I need to run bellow map reduce command from unix shell script. MR_COMMAND="StreamsOnly_RM.jar -conf StreamsOnly_RM.xml \"$input_dir1/*/$IPPattern1\" $temp_output $output_dir" a echo command ...
-3
votes
1answer
49 views

Need guidance in writing a unix script to compare the files in source and target directories

i want to write a unix script where: source dir:/test1/jobs/def1,def2,def3....so on target dir:/test2/jobs/def1,def2,def3....so on scenario1: i want to compare that jobs folder in source and target ...
0
votes
2answers
26 views

Replace a value of a parameter in a file from Bash Script

I have this pair in my configuration file: TheParameter="TheValue" I am trying to replace the TheValue from a bash script like, with no luck. sed 's/TheParameter="(.*)"/TheParameter="NewValue"/' ...
-2
votes
2answers
21 views

How to get revs in subversion based on multiple ticket numbers in the comments? [closed]

I tried multiple ways to get revisions in subversion based on multiple ticket numbers entered in svn comments in bash. Please advice !! #!/bin/sh SEARCH=$1 URL=$2 echo "Searching for ["$SEARCH"]" ...
1
vote
1answer
33 views

Shared memory and waiting sessions in Matlab

Doing a regression on a large dataset, I have a huge read-only matrix that I'd like to share among several threads. I've looked at various way of doing this and found sharedmatrix toolkit to be ...
0
votes
1answer
22 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 ...
2
votes
4answers
32 views

Can't extract pattern from filename

Getting errors from the following sed command: echo 20130521_OnePKI_p107336_APP.pfx | sed -e 's/_\([pP][0-9]+\)_/\1/' Instead of returning p107336, it is returning the full filenam ...
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" ...
1
vote
4answers
31 views

SED command in UNIX

I want to remove below string from a file in Unix: <?xml version='1.0' encoding='UTF-8'?> The file content is exactly this: <?xml version='1.0' encoding='UTF-8'?>Hello World in one ...
-1
votes
2answers
40 views

Deleting log directories of a particular timestamp in UNIX

I want to delete directories that are five days old, based on the directory name, instead of unix timestamp. Let us assume that directories are created like test_2013-05-20-12:23:43 and so on. I want ...
0
votes
1answer
19 views

PROC : Regarding proc Executable size difference

2 years back , I have compiled the proc test.pc and create the executbale "test" . Now same proc program I have compiled , but executable size is different compare to previous one(i didn't change ...
0
votes
1answer
16 views

Java key release event from STDIN in terminal raw mode

I'm trying to write a console game using java, and when you hold down a key, I want it to move your character constantly. This means I need key press and key release events, because there is a delay ...
0
votes
0answers
31 views

file not exist error in cygwin

I am executing the maven command from E drive with different settings.xml file located at H drive. I am getting the following error. Its taking E as base directory. user1234@abcavbavb17 ...
0
votes
2answers
47 views

How to make a UNIX pipe prompt for user input correctly?

I am trying to have UNIX pipes correctly prompt for user input. I have to create 3 child processes using a single pipe. Each child process asks the user to enter an integer and writes it to the pipe. ...
2
votes
1answer
41 views

Running a php script as a background process using unix

I am trying to run the php script (below) named daemon.php as a back ground process using unix. #!/usr/bin/php <?php $count = 0; while(true){ $count = $count + 1; ...
1
vote
2answers
26 views

Displaying a vertically wrapped buffer for efficiently viewing more output in the terminal

Suppose I have large amounts of log output or something that I want to keep tabs on, to be able to view simultaneously as much output as possible. I have lots of screen real-estate, and to make ...
0
votes
1answer
41 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 ...
1
vote
1answer
30 views

Difference between dir/**/* and dir/*/* in Unix glob pattern?

It seems that the output are the same when I echoed it. I also tested other commands such as open, but the results from both are the same.
1
vote
2answers
33 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
61 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
92 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
53 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
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 ...
0
votes
1answer
13 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 2 3 4 5 276