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
1answer
26 views
Execute command in jail
I'm using Jailkit. Is it possible to execute a command inside the jail and get the output (from outside) ? I did a lot of digging in the docs but unable to find anything.
0
votes
2answers
26 views
Rename a file in a directory without retyping the directory name
Say we have a file test.txt in my_directory that I want to rename to yeah.txt.
Is there a way with zsh (or even just bash, just to know) to avoid retyping my_directory?
I find the following a bit ...
2
votes
2answers
47 views
Exact grep -f command in Linux
I have 2 txt files in Linux.
A.txt contents (each line will contain a number):
1
2
3
B.txt contents (each line will contain a number):
1
2
3
10
20
30
grep -f A.txt B.txt results below:
1
2
3
...
1
vote
1answer
39 views
how to deal with files whose names are flags
I was wondering how to deal with files whose names are flags, like '-a', '-f' etc. I can't pass them as arguments to programs like rm or ls, because they are interpreted as flags, and doing rm * or ls ...
0
votes
1answer
14 views
which octal value marks the start of a program in ubuntu/why?
I'm reading the somewhat dated (though still quite good) "The Unix Programming Environment" by Kernighan and Pike. On page 46, in a description of the "file" program, which guesses a file's filetype, ...
5
votes
2answers
58 views
How to find files differing only by extension [closed]
Suppose I have multiple random .txt files, and in the same directory I have nearly-identically-named files like filename.sql and filename.txt. How would I find those .sql and their counterpart .txt ...
1
vote
0answers
33 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
21 views
Configure Clock on different port other than port 80 in CentOS [closed]
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
21 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
10 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
22 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
33 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
26 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
75 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
92 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
79 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
32 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
53 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
20 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
1answer
54 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
56 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
37 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
41 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
17 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
69 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
39 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
23 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
35 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
53 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
27 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
22 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
34 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
23 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
34 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
32 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
33 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
50 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
46 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
29 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
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 ...


