Tagged Questions
2
votes
1answer
26 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
58 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
0answers
16 views
Script runs in Unix but not in Informatica command task
My script ran successfully in Unix but not in a command task of an Informatica workflow. The permissions are fine, and the parameter file and variables have been declared in the workflow. Why is this ...
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
54 views
syntax error: unexpected end of file
I am getting this error when I run my Bash script:
syntax error: unexpected end of file
Cant really find where the error is, been looking for hours and still get this error.
Here is the script ...
0
votes
1answer
45 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
1answer
26 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 ...
0
votes
4answers
27 views
How to run a shell script by just typing its name, as opposed to sh [scriptname]? [closed]
So I just started learning UNIX and need a very basic question answered! I have spent hours searching for the correct way, but it seems I cant really get my head around it!
I have script called ...
2
votes
2answers
63 views
want to change csv file date column format
Im newbie to batch/shell scripting. I have a CSV file like this:
Id depId Name city Date prod
12345 52845 ken LA 08.08.2013 16:06:53 KLS22
25685 28725 Larry MA ...
1
vote
0answers
54 views
How to invoke Unix “script” command in Perl?
I'm sure this is an easy fix, but I need to use "script" (and not collect standard in/out/error) for my project. I'm somewhat new to Perl, so please bear with me.
I have a Perl script that works ...
0
votes
0answers
17 views
Running a Command in xterm Without the Window Closing [migrated]
I am trying to figure out how to open an xterm and execute a command in the new window without the window closing. Ideally, I would like to be able to open an xterm, switch users, and source a .cshrc ...
0
votes
2answers
26 views
call unix sql script on windows using java program on windows
I have a sql script on unix. I want to call it in a java program running on Windows. I don't have Oracle installed on my Windows. Is there any method to call script in java program from unix server ...
1
vote
1answer
30 views
UNIX execute parallel curls base on script parameter
I have to send some cURL request in a parallel way.
At one side I have the curl.sh script (for security reasons data has been hidden):
#!/bin/bash
SERVER=...
PORT=...
CONTEXTPATH=...
SERVICE=...
...
0
votes
0answers
15 views
How to Make a chmod Script in cgi-bin - Please Help an Old Fool
I'm a new-bee when it comes to server configuration.
I would like to change the permissions of all the files in a directory (and it's various sub directories). There appears to be many topics on how ...
3
votes
1answer
77 views
How does cmd > /dev/null 2>&1 work?
I'm reading up on redirecting data to /dev/null and so I tried a simple test:
ping a.b.c # which results in an address not found
If I try this:
ping a.b.c > /dev/null # prints the same error ...
1
vote
4answers
45 views
Loading variables into memory from cat
I have a list of variables defined in a file on a server and I'd like to load those variables into a script on my local machine without saving them to a file on a my local machine.
File name on ...
0
votes
0answers
51 views
Getting Permission Denied Error in Shell Script [closed]
I am trying to get value of some column in shell script using :
logf= `echo $log_files|awk '{print $NF}'`
echo $logf
Here my column name is being printed but throwing error as:
./Run1.sh[87]: ...
1
vote
4answers
48 views
Reuse or repeat pipe input as arguments in command (example given)
I'll explain this problem with an example. Let's say I want to generate a list with two columns. Column 1 contains a file name and column 2 contains the md5 sum of that file.
This can be done using ...
0
votes
2answers
56 views
How to set local variable to value of variable on an ssh server
My other question here Assign variable from SSH server to local machine variable was never successfully answered, and I'm not sure how to "bump" the question to get more views, but how can I set the ...
1
vote
2answers
36 views
Getting PID of process in Shell Script
I am writing one shell script and I want to get PID of one process with name as "ABCD". What i did was :
process_id=`/bin/ps -fu $USER|grep "ABCD"|awk '{print $2}'`
This gets PID of two processes ...
2
votes
2answers
38 views
Bash script to analyze directory and print directory summary
I am working on a script that will analyze any dir in unix and will display the output:
script.sh dir1 dir2 ... dirn
Needed output:
Directory xxx contains yy files and zz directories
#!/bin/bash
...
0
votes
4answers
46 views
Bash script to awk the date from Unix
I am working on the script that will capture date (the day of the week) from the
system and if the day of the week is Friday the script will print the message
"Any message".
I think I am missing some ...
0
votes
1answer
25 views
Need help - Getting an error: xrealloc: subst.c:4072: cannot reallocate 1073741824 bytes (0 bytes allocated)
Checking if anybody else had the similar issue.
Code in the shell script:
## Convert file into Unix format first.
## THIS is IMPORTANT.
#####################
dos2unix "${file}" "${file}";
...
3
votes
4answers
63 views
Catch failure in shell script
Pretty new to shell scripting. I am trying to do the following:
#!/bin/bash
unzip myfile.zip
#do stuff if unzip successful
I know that I can just chain the commands together in with && ...
0
votes
1answer
25 views
Parse data from a shell variable and resuse variable with new data
I have a shell script that I use to do a few things requiring an actual IP address and the DNS name (for readability to the user).
A user will create a shell properties file containing variables that ...
0
votes
1answer
26 views
Unix shell script command that creates symlinks on windows?
Is there a unix shell script command that creates symlinks, that works on windows too?
(not windows-specific command but one that works on a unix-like shell like git bash)
Basically what i'm trying ...
2
votes
5answers
77 views
How to extract a particular pattern from a file?
I have a file as in below format:
#### >>> start of File
Item number - 1
Name xxxx
yyyy
Result PASS
Item number - 2
Name yyyyy
yyyy
Result FAIL
Item number - 3
NAME ppppp
eeee
rrrrr
...
0
votes
3answers
73 views
recursively copy files(with same name) to one folder
I have a bunch of files in separate folders, that have the same name.
For example,
/path/to/your/directory/1/results.pdf
/path/to/your/directory/2/results.pdf
But, I would like to copy them to the ...
0
votes
0answers
48 views
How to answer two prompts from an two external program with Perl?
I'm answering the first prompt question of the first program with the following code:
system("sum.exe < input.txt");
where the file input has all the inputs that your program expects/prompts ...
-1
votes
2answers
38 views
Add text to specific text line
i'm kinda new to linux programing, and I've searched everywere, and i don't find any answer for my question, i have a file lets call it, config.txt/.ini;
My question is: Is there anyway with a script, ...
-3
votes
1answer
33 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
1answer
31 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
4answers
94 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
...
0
votes
1answer
21 views
How to suppress whitespace from inputs in tcsh?
In tcsh I'm trying to make an alias like
alias getit "mv /somedir/$* ."
If I then do
getit foo.txt
tcsh tries to execute
mv /somedir/ foo.txt
i.e. it inserts an unwanted whitespace and ...
1
vote
1answer
29 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.
...
0
votes
0answers
41 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 ...
2
votes
1answer
70 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;
...
-3
votes
2answers
79 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
...
0
votes
3answers
57 views
Using grep to list lines starting with
I am trying to Use the GREP command to list all lines which contain the letter
'd' at least twice in a row (that is, next to each other), from file "test". But i can't get it to work. Can someone ...
-2
votes
1answer
43 views
Using read command [closed]
I am extremely confused about using the read command. Can someone please explain this to me? For example if I have:
An executable file called script, containing
read first second
echo $first
echo ...
-1
votes
0answers
21 views
How to start a couple of cshell scripts?
I have to write the following C Shell scripts (I know, C Shell is bad), and I really don't even know how to start so I was wondering if I could get a push in the right direction. I assume they both ...
1
vote
3answers
50 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
1answer
53 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
53 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
0answers
34 views
Sqlplus Query with shell_exec(); PHP command
I need to run a PL/SQL Query from a distant oracle server in order to create spool files and send it to my own server, using a php script.
I firstly created a SH script called myscript.sh :
...
0
votes
2answers
46 views
Put specific text at the end of file in unix
I have a html file retrieved using wget. I want to put all links, i.e., all <a href=""> </a>, at the end of file. Is it possible?
For example, consider the following file:
<tr ...
0
votes
0answers
114 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,
...
0
votes
1answer
21 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 | ...
-3
votes
1answer
37 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
1answer
247 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
...



