Tagged Questions
-3
votes
1answer
32 views
Implementing Algorithm Syntax Error
#!/bin/ksh
extended_gcd()
{
a=$1
b=$2
x=0;
lastx=1;
y=1;
lasty=0;
while ((b!=0));
do
quotient=$a/$b
tmp3$b
b=$(($a%$b))
a=$tmp3
tmp3=$x
$x=$lastx-$quotient*$x
...
0
votes
0answers
53 views
Terminating half of a pipe on Linux does not terminate the other half
I have a filewatch program:
#!/bin/sh
# On Linux, uses inotifywait -mre close_write, and on OS X uses fswatch.
set -e
[[ "$#" -ne 1 ]] && echo "args count" && exit 2
if [[ ...
0
votes
3answers
26 views
downloading images from links as column values in a csv file in linux/unix
I have a temp.csv file that has 4 columns and plenty of rows. The column0 has a link that are images from the internet like 'www.abc.com/one.jpg' and so on. I usually download any link using the ...
0
votes
3answers
21 views
Wrap STDIN with characters
I would like to turn "{something: here}" into "[{something: here}]"
For example:
$ echo "{something: here}" | magic_command
$ [{something: here}]
I want to do it all as part of a bash one liner ...
1
vote
5answers
30 views
Select line below search expression in log file
I am trying to search logs for an expression, then select the line below each match.
Example
I know I want the lines below CommonText, for example given the log data:
CommonTerm: something
This ...
1
vote
1answer
28 views
Wildcards in Korn Shell
When I‘m in my home directory and type “ls *s*” in the terminal, it shows me all folders and files that have ‘s’ in their names (Music for example). But when I type “ls *si*”, it doesn‘t show anything ...
1
vote
4answers
55 views
Find and update(append) csv with shell script
Input file:
ID,Name,Values
1,A,vA|A2
2,B,VB
Expected output:
1,A,vA|VA2|vA3
2,B,VB
Search file for a given ID and then append a given value in the values {field}
use case : append ...
0
votes
1answer
28 views
Difference between $(command) and `command` in a script [duplicate]
What is the difference between executing a command like this:
var=$(ls -alh /dir)
And doing it like this:
var=`ls -alh /dir`
Is one method able to be used in more interpreters than the other?
0
votes
1answer
16 views
Executing korn shell script
I can't execute my korn shell script without the ksh command. I included #!/bin/ksh in the first line of the script but when I try to execute it only by name it says no such file or directory. Can you ...
-1
votes
0answers
13 views
Retrive Weblogic Status using UNIX Shell Script
How to check weblogic server status using unix shell script. daily i have to check weblogic server statys using admin console. so, for automation i need a code for checking server status.
0
votes
4answers
74 views
Unix: Get the latest entry from the file
I have a file where there are name and time. I want to keep the entry only with the latest time. How do I do it?
for example:
>cat user.txt
"a","03-May-13
"b","13-May-13
"a","13-Aug-13
...
-1
votes
1answer
25 views
How to make Korn Shell to go to new line [closed]
how can I make the ksh to go to new line when I'm typing in the terminal and it goes to the end of the current line?
0
votes
0answers
18 views
Korn Shell .kshrc [migrated]
I'm trying to make the UP arrow to get previous command in Korn Shell but I can't find .kshrc file in my $HOME directory. I know it is hidden but even ls -al doesn't show it. What should I do?
0
votes
1answer
28 views
Korn Shell Implementation from a pseudo-code
I'm trying to implement the extended euclidian algorithm whose pseudo code has been given below in korn shell. I'm having problems with the lines with ":=". I don't know what those mean and I'm also ...
0
votes
1answer
22 views
How do I get the unix terminal to say how many files are left to run, and which file it is working on?
I have a shell script that is sending in about 150 files to a python program I wrote.
I have no idea how long it is going to take, so I was wondering if there was a terminal command to either:
a) ...
1
vote
2answers
24 views
Passing variables between two serves
I am taking input from user for a shell script, and want to run this script on different servers. I tried to pass the variables as follows:
USERNAME=****
HOSTS="**** ***** *****"
...
1
vote
1answer
25 views
Setting variable to last arg from command line parameters
I'm trying to write a script in a way that makes it simple to add future command line args. I'm using getopts and that works well. However, I'm running into issues with the case statement.
...
2
votes
1answer
41 views
parsing xml file in unix
I've got this xml file:
<?xml version="1.0"?>
<RunInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="2">
<Run ...
0
votes
2answers
25 views
how to fgrep/egrep exact string in a file
I'm trying to search for an EXACT string match in a file. I know it can be done via "grep -w" but for some reason, i dont to do it with grep.
Already tried these and didnt work for me:
egrep '\< ...
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
...
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 ...
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:
...
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 ...
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 ...
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 ...
-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 ...
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
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
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 ...
-3
votes
2answers
77 views
How to rearrange text file output result
I would like to write a unix script that do the following to have the ff result:
textfile1 contains the following text:
keyval1,1
keyval1,2
keyval1,3
keyval1,4
keyval2,1
...
3
votes
1answer
45 views
How do i create random numbers that are nonrepeating using applescript
Trying to figure out how to create nonrepeating numbers using applescript. If I want random numbers only 1 or 2, i would want my result to be [1,2] or [2,1] and never [1,1] or [2,1].
So I just ...
0
votes
3answers
28 views
posix shell script: recursively remove all files starting with a certain prefix
I want to use a shell script to remove recursively all files starting with the prefix ._ (matching the pattern ._*) in a certain directory, but the embarrassing thing is that I barely know anything ...
-5
votes
0answers
59 views
Shell Scripting Exercise [closed]
Do you have some sample shell script exercise problems that one use to learn Shell Scripting like a "Problem solving" approach. Right from simple to complex. I tried to google it but didn't find much ...
0
votes
2answers
42 views
Replacing with sed wont work
I have a file called "washington", with capital spelled in 4 different
ways: Capital, capital, Capitol, capitol. Use the "sed" command
to replace all of them at once, with the correct spelling: ...
1
vote
3answers
30 views
How to create a file in remote server from local server? [closed]
can anyone tell me how can i store the names of a file that are in remote server to a file and then get the file that contains the name in local server?
there is a remote server where 5 files are ...
1
vote
3answers
36 views
Assign variable from SSH server to local machine variable
I have two scripts that are being run. One runs from a client workstation and calls a script on a server. I need a variable from the server script and I figured I could do it this way, but it isn't ...
0
votes
2answers
38 views
“Argument list too long” in display all list elements
I would like to dump the content in a list, but I have no idea how to solve this problem now.
When I try to display all elements in the list, shell shows:
arguments list too long
in Makefile:
...
0
votes
1answer
24 views
Getting %0D%0D at the end of url while accessing from unix
I am accessing a file kept on my svn repository from unix by wget command.
#!/bin/bash
...
0
votes
4answers
90 views
Sort entries of lines using shell
Considering the following input and output:
infile | outfile
1 3 5 2 4 | 1 2 3 4 5
2 4 5 | 2 4 5
4 6 2 1 | 1 2 4 6
Is there any combination of UNIX programs, not involving ...
0
votes
1answer
39 views
Shell script permission denied when conditional test
Whenever I try to run my shell script, I'm getting an error under 4 different if tests.
script.sh 45: script.sh: : Permission denied
script.sh 52: script.sh: : Permission denied
script.sh 59: ...
0
votes
1answer
45 views
Shell Scripting - Must not generate extra messages and its not but says I am
There is a similar question about this issue. But not the same solution.
I am to create a shell script that takes two parameters:
1.the desired file extension
2.the name of a single file to be ...
0
votes
2answers
47 views
Remove all files under 600 bytes
I've seen questions about how I can remove all files under a certain file size, but none of them have dealt with very small files (most of mine are simple .txt files that contain 500-1200 characters). ...
0
votes
1answer
37 views
Shell script handle string with sed
I have a text file, each line is one or more file paths separated with space, all the file has suffix dl, e.g.
/some/path/file.dl
/some/other/path/file2.dl /some/other/path2/file3.dl
...
1
vote
2answers
24 views
Process tab delimited file and save each column as variable
I have a tab delimited feadList that has two columns (date + id):
20130509 1319
20130510 1320
20130511 1321
20130512 1322
20130513 1323
While reading each line, I want to curl data ...
0
votes
0answers
57 views
Completing my own shell code
I have created a shell in C and here is the code.I have also commented the code.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include ...
0
votes
1answer
31 views
decrypting a variable in a scripting environment of Linux
What does $@ in unix shell script signify. For example:
A__JOB="$CLASS $@"
where $CLASS has my java class file name. So what might be the meaning of
$@.
What did I do?
I Googled :) but $@ ...
0
votes
2answers
76 views
Can not understand the pipe() in my own shell
This is the code i found for my own shell. It works fine, but the thing i can't understand is pipe section of the code.
#include <stdio.h>
#include <unistd.h>
#include <string.h>
...
0
votes
1answer
52 views
How to pass array of arguments in shell script?
Right now i a have a working script to pass 2 arguments to a shell script. The script basically takes a ticket# and svn URL as arguments on command line and gives an output of all the revisions that ...
1
vote
2answers
34 views
variable does not store value while running script from root (unix)
Output variable does not store value of "pbrun tsm_support.ksh -c $i" command while running this script though root.
#!/bin/bash
set -x
for i in `cat /home/unixlist.txt`
do
output=$(pbrun ...




