3
votes
3answers
39 views

script not reading last line of a file

i have a file created in windows using notepad: 26453215432460 23543265235421 38654365876325 12354152435243 I have a script which will read every line, and create a command like ...
2
votes
1answer
19 views

Unix Diff command compare difference between 2 txt files and generate more command [closed]

I have created a script, which will generate a list of IPs and then put them in the name of "ip-$date.txt". for example, ip-20130619.txt. Tomorrow it will be ip-20130620.txt Now I need to create ...
-4
votes
1answer
13 views

how to create a folder in FTP by using SFTP unix commands [closed]

i want to create a folder in FTP by using SFTP Unix Commands or scripts. when i used MKD Folder it is throwing command not found. please help me on this.
4
votes
1answer
56 views

How can I pipe mutiple arguments into a unix command?

I couldn't find anything similar hence posting the question. Say I have set of commands which provides an output First set which produces an output cat xyx.txt | awk '{.........}' | sed 's/.../' | ...
0
votes
1answer
15 views

Unix Script - finding duplicate strings in a multiple dat files

Please help me in providing a solution in Unix script for below logic Merge muliple delimited .dat files and place a merged file in a tmp location Duplicates needs to be identified in the merged ...
0
votes
1answer
21 views

Reading a binary file as an array of bytes or 16 or 32 bits using shell script

I am working on ARM-based modem linux host machine and I need to read a bin file as an 8-,16- or 32- bits array. I basically need to encrypt the file in question and was thinking of just XOR-ing the ...
0
votes
2answers
21 views

To get the value of a variable from shellscript

I am creating some shell script. script1 is having an if condition inside method1 for ex- script1 method1() { if [[somecondition]] then var=y else var=n fi } method2 .... .... I want ...
4
votes
3answers
35 views

Find a Value in a column found remove the entire row

below is my input file, input.txt Value Value1 value2 5 1 2 1 4 3 2 1 5.5 0 0 0 4 1 0 I need to search the value(5.5) in the ...
-1
votes
0answers
25 views

how does built in commands of a shell implemented in Linux? as a function or thread of shell process? [closed]

I know that external commands are run in the shell by creating a separate process. But what exactly happens when a built in command is run in a shell. Are they executed as a function or if the shell ...
0
votes
1answer
43 views

How to delete a directory based on date and time

The below script will be called from a cronjob and my desire is to remove directories older than 10 mins of the current time. I'm having trouble with the following in my script: Trimming \n from ...
0
votes
0answers
51 views

create poem in shell with sed or awk or [closed]

i work with text in my text are poem i want insert my poem in a specific tag for example this is a poem : AAAA BBBB CCCC DDDD i want insert above text in these tags : <br/><div ...
0
votes
1answer
25 views

I have a file having some columns. I would like to do sort for column 2 by grouping column 1 values

I have a file having some columns. I would like to do sort for column 2 by grouping column 1 values. See below example. Input File like: NEW,RED,1 OLD,BLUE,2 NEW,BLUE,3 OLD,GREEN,4 Expected ...
-2
votes
2answers
41 views

What does dirname do? [closed]

Can any one please explain the use of below command in unix? cd `dirname $0`
0
votes
1answer
21 views

shell script to reading from file and do depending on the pattern

Need advice on shell script to read the file and echo depending on the pattern cat revs.txt 1 3 8:13 18:71 89 if x:x then echo "This is revs range" else echo " this is single rev"
0
votes
2answers
30 views

Execution of korn shell

Any one has the idea of the below line: path to file/filename.ksh help trunk help Can any one explain the meaning of this what will be doing? I want to know why the last three words are used in the ...
0
votes
0answers
13 views

does anyone have script to download the XML from repository and FTP that to particular box

we generally do manual export of workflow in form of XML from SIT, does anyone have any shell scripts to make this process as a automation, a script to download the XML from repository and FTP that to ...
2
votes
1answer
49 views

Empty regular expression in sed script

Found the following sed script to reverse characters in each line, from the famous "sed one liners", and I am not able to follow the following command in //D of the script sed ...
0
votes
1answer
47 views

Jenkins - java.io.IOException: Cannot run program “/usr/local/bin/bash”

Please help me. . I am using Jenkings in Linux_Machine_1 . It have around 20 jobs(successfully running jobs) . I copied .jenkins folder to Linux_Machine_2. . I started Jenkins in Linux_Machine_2. ...
1
vote
0answers
61 views

What signal does the shell send when it's about to close

I'm building a chat in c under unix. I have a server side and a client side. All works great except when the client closes the shell window. In that case the client didn't tell the server he's going ...
-4
votes
2answers
67 views

Unix command to replace all instances of a string in every file in a folder [closed]

I have a folder "model". In it, I need to replace all instances of the term "Test_Dbv3" to "TestDbv3". There are multiple files with names like test_host.hbm.xml, test_host2.hbm.xml, testHost.java, ...
0
votes
2answers
28 views

Osx terminal: how to open one or more folders/files whose filepaths are the output of a command

EDIT: I found a solution for this that worked. It's apparently important to quote the file paths to make sure they are read as a whole. path_to_open=$(gfind ~/x/y/ | gshuf | ghead -n 1) && ...
1
vote
2answers
80 views

Find and delete old files excluding some subdirectories

I have been searching for a while, but can't seem to get a succinct solution. I am trying to delete old files but excluding some subdirectories (passed via parm) and their child subdirecories. The ...
2
votes
1answer
51 views

bash script to get command values in two files and write is a pattern to new file

Bash script to get command values in two files and write is a pattern to new file Need bash script to find common values in two files and write it to new file in certain pattern. I can get the common ...
0
votes
3answers
35 views

Need help in listing of selected files using ssh command remotely

I am using the following command remotely from a code and get the complete list of files from AIX box under /web/sample folder ssh username@10.10.10.10 ls -lLtp /web/sample Now I need to tweek this ...
2
votes
1answer
28 views

Why am I experiencing a weird execution case with my CakePHP Shell?

I use CakePHP (v2) Shell to execute a process behind my online application. This Shell is part of a Plugin, so stored in: app/Plugins/MyPlugin/Console/Command/MyScriptShell.php I used 2 different ...
1
vote
1answer
31 views

parsing inputs to shell script on command line

I'm trying to assign everything else after strings to $@ but orange is also picked. I thought the shift will take as rest of the args but the output is picking orange too. $ cat try.sh ...
2
votes
6answers
47 views

Faster way to Unix cd by changing one directory inside path?

I have multiple directories (eg tom richard harry) that have identical subdirectory and file structure. If I am working on a file inside one directory, is there a fast or easy way to cd to the ...
1
vote
3answers
51 views

AWK command to print until end of line

I have a quick question regarding the AWK command. I need the command to print until the end of the line on the same line, but then when it gets to the next line I need it to print on another line. ...
0
votes
1answer
18 views

Unset a argument variable

I have created a script in sh shell. #script.sh echo $1 if [ x$1 = 'x' ] then echo CODE1 else echo CODE2 fi 1) if I am running it using . ./script.sh OUTPUT: CODE1 2) If I run it like . ...
2
votes
1answer
29 views

How to pass login parameters to mysql

I have a shell script which calls the mysql command line client, it looks like this: $ cat ms mysql --host=titanic --user=fred --password="foobar" It works OK: $ ./ms Welcome to the MySQL ...
0
votes
1answer
45 views

How to unzip the file_name.csv.gz files to .csv [closed]

I want to Unzip the files, which are in *.csv.gz format to .csv format. when i tried with these Commands $ gzip -d file.gz and $ gzip -f file.gz, it is showing like gzip: IQ.gz: No such file or ...
5
votes
2answers
127 views

Calculate time based metrics(hourly)

How would I calculate time-based metrics (hourly average) based on log file data? let me make this more clear, consider a log file that contains entries as follows: Each UIDs appears only twice in ...
1
vote
1answer
33 views

how to split text or csv file(100 thousand) into csv files ( each one contains 10k ) based on the lines count?

how to split text or csv file (100 thousand) into csv files (each one contains 10k lines ) based on the lines count ? Using UNIX script.
0
votes
4answers
45 views

How can we check if string is a version number or not

How to check if a string contains version in numberic/decimal format in shell script for eg we have 1.2.3.5 or 2.3.5 What if we do not have a constraint on the number of characters we have in here. ...
3
votes
5answers
95 views

AWK split for multiple delimiters lines

I'm trying to split a file using AWK one-line but the code below that I came with is not working properly. awk ' BEGIN { idx=0; file="original_file.split." } /^REC_DELIMITER.(HIGH|TOP)$/ { idx++ } ...
-1
votes
2answers
42 views

Deleting multiple directories(same name) in Linux [closed]

My team uses CVS. For some reason I need to create a shell script which deletes all folders with the name CVS(those who have worked on it might understand) present in my local copy. Consider the super ...
0
votes
2answers
30 views

store the values from command into an array bash

svn mergeinfo --show-revs eligible http://svn.test.com/INT_1.0.0/ http://svn.test.com/DEV/ | cut -d"r" -f2 | cut -d" " -f1 6097 6099 when i put this in a script, i get only last value but not all: ...
0
votes
1answer
37 views

shell script taking last empty line of a file also

I have a script: #! /usr/bin/ksh TODAY=$(date +%Y%m%d) list=$1 FILE_NAME="IMEI.txt" OUTFILE="${list}_list.out" ########################################## if [ -z ${list} ] then echo "Use the ...
0
votes
2answers
37 views

Update a shell script change in all directories

i have created a shell script in 10 directories. a/we.sh b/we.sh c/we.sh . . . . how to update a change in the shell script in all the directories in unix/Linux.
0
votes
1answer
26 views

Shell Substitution Precedence

I get tripped up on the sequence of substitutions shell does. I understand shell will do variable substitution before file substitution, which is done before the command line is parsed. Shell can do ...
2
votes
7answers
97 views

Get common values in 2 arrays in shell scripting

I have an array1 = (20,30,40,50) array2 = (10,20,30,80,100,110,40) I have to get the common values from these 2 arrays in my array 3 like: array3 = (20,30,40) in ascending sorted order.
-1
votes
0answers
68 views

File name starting with *\* [migrated]

I have some weird file in my home directory which name is \e[m. I am using Linux. How can I delete it because I tried rm but it says no such file or directory found?
0
votes
3answers
59 views

BASH getopts optional arguments

I'm trying to create a shell script that has two mandatory arguments (arg1, arg2) and then an optional -b flag plus the argument that needs to follow should the user choose to use the flag. Let me ...
1
vote
5answers
53 views

Search for a value in a file and remove subsequent lines

I'm developing a shell script but I am stuck with the below part. I have the file sample.txt: S.No Sub1 Sub2 1 100 200 2 100 200 3 100 200 4 100 200 5 ...
1
vote
4answers
70 views

Compare two files and adding zero if no values in 2nd file

I have two text files zero.txt and value.txt. zero.txt: hour Value1 value2 0 0 0 1 0 0 2 0 0 3 0 0 4 0 0 upto 24. and ...
0
votes
1answer
34 views

How to use eval to force variable update

I was reading the bash advanced scripting guide (if memory serves me right), and it said something to the extent that eval can be used to force variable updates. So I tried this: ...
2
votes
1answer
42 views

unix shell script exexution invokes a new jvm

Scenario : The jars are deployed on unix environment, which are used to execute batch process using shell script, and in these n shell scripts the environment path(read classpath) is setup ...
-5
votes
2answers
69 views

Add zero value in a file if there is no value [closed]

I have a select query which fetches all the orders for a particular hour(sorry i will copy the db2 query later) and result will be stored in sample.txt file The output will like below, sample.txt ...
3
votes
1answer
60 views

sorting with multiple keys with Linux sort command

Say I have this file. $ cat a.txt c 1002 4 f 1001 1 d 1003 1 a 1001 3 e 1004 2 b 1001 2 I want to sort it by the second column and then by the third column. Column two are numbers, while column 3 ...
37
votes
8answers
19k views

Delete newline in Vim

Is there a way to delete the newline at the end of a line in Vim, so that the next line is appended to the current line? For example: Evaluator<T>(): _bestPos(){ } I'd like to put this ...

1 2 3 4 5 59