1
vote
2answers
25 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 ...
0
votes
2answers
39 views

UNIX newbie: shell script not running, command not found

I am very, very new to UNIX programming (running on MacOSX Mountain Lion via Terminal). I've been learning the basics from a bioinformatics and molecular methods course (we've had two classes) where ...
-5
votes
0answers
36 views

Calling executable file (scripting) [closed]

if you have an executable file called “script”, containing: read first second echo $first echo $second and you call it with:   echo This is a line of input | ./script What do you see on ...
0
votes
2answers
38 views

Including sub-parameters in help options to execute wisely?

I am writing a script which can choose a file and print specific content. For example, san#./script.sh Expected Usage : ./script.sh --file1 --dns (Here it checks for file1, search for dns name and ...
3
votes
2answers
74 views

grep -f alternative for huge files

grep -F -f file1 file2 file1 is 90 Mb (2.5 million lines, one word per line) file2 is 45 Gb That command doesn't actually produce anything whatsoever, no matter how long I leave it running. ...
4
votes
3answers
71 views

Command not found error while shell scripting

I'm trying to execute the program as followed. ./chExt1.sh cpp test.CPP This should rename test.CPP to test.cpp but I don't even think this script is executing at all. I am consistently getting ...
0
votes
1answer
44 views

Getting a Process ID & Assigning to a Variable in a Bash Script

I have an interesting situation. All code here is a functional pseudo-code example of the exact issue I am facing so no jokes about assign the output of date. I actually want to capture the output of ...
0
votes
3answers
35 views

Unix scripting whoami/$USER not working as desired

Hi I have the script as below. if [[ 'whoami' -eq "test" ]]; then echo "test user" else echo "Not a test user" fi This is returning test user even if my user is not text. It would be ...
0
votes
6answers
42 views

Remove part of the path in shell

echo "/dir1/dir2/filename.txt" | sed ???? What should be the Sed expression to get the output as /dir1/filename.txt If there is any other simpler way to achieve this, that is also welcome.
1
vote
2answers
17 views

Unix utility to finish this term frequency counter pipeline

Right now I have to write a little script that takes a directory of documents(the example given is each chapter in Revelation) and turn them into a term frequency document. So far, I have: foreach ...
0
votes
1answer
59 views

How can I run multiple UNIX commands, using an input file, just once

I'm relatively novice in Unix Shell Scripting. How can I run the (following) multiple UNIX commands (put into a script, say "discover.sh", using my_log.txt input-file just once? Eventually, I would ...
0
votes
1answer
66 views

Bash Script: How to use variables from list

I am trying to write a script that will report back the last time a file was updated in a folder. The folders are created everyday Example: /home/user/todaysdate. Inside todaysdate folder exsist that ...
0
votes
3answers
63 views

python trap on exit/catch system exceptions and issue kerberos command

We are currently in the middle of migrating to an SSH and Kerberos authentication scheme in our unix environment. I need to issue a Kerberos OS command in all our our automated python scripts anytime ...
2
votes
3answers
140 views

How do I check if an argument passed in a Shell script is NOT a number (integer)?

I know how to check if an argument is a number using: if [[ $2 = *[[:digit:]]* ]]; then # $2 is a number else # $2 is not a number fi However I want to check if the argument is NOT a number ...
0
votes
5answers
122 views

shell must parse ls -Al output and get last field (file or directory name) ANY SOLUTION

I must parse ls -Al output and get file or directory name ls -Al output : drwxr-xr-x 12 s162103 studs 12 march 28 2012 personal domain drwxr-xr-x 2 s162103 studs 3 march 28 ...
-1
votes
1answer
67 views

Using bash to edit text file and display output

I have a text file with courses that looks like this: csc 4567 - Computer Programming This course is about stuff...blah blah blah 4.0000 credit hours I need to write a bash script that takes the ...
1
vote
5answers
102 views

Print first N words of a file

Is there any way to print the first N words of a file? I've tried cut but it reads a document line-by-line. The only solution I came up with is: sed ':a;N;$!ba;s/\n/δ/g' file | cut -d " " -f -20 | ...
0
votes
1answer
66 views

Adding double quotes to last field of ls command output

I was writing a shell script , where it will look for files(ZIP) in a directory using ls command and unzip them in destination , the problem is that the file name is having spaces between ,so when ...
0
votes
3answers
78 views

Unix Shell scripting: how to modify output file names accordingly

So my current shell scripting is: for j in *.jpg do tesseract $j $j done where tesseract converts jpg files into text files. With this script, if there was a file HAHA.jpg, then the output file ...
-1
votes
1answer
85 views

Would like to get rid of std out when calling a script from another script

I am supposed to call script 2 from script 1 and script 2 calls script 3 within script 2. In script 3 there are some STDOUT statements which are being printed when I make a call to script 2 from ...
-1
votes
2answers
148 views

find the string and print out the line before and after- unix scripting

right now i have this code FNR==NR { id[$0]; next } $0 in id { f=1 } f NF==0 { f=0 } and i want to print out the line before the string found as well. ...
0
votes
1answer
45 views

input file isn't being read correctly scripting awk

Hi I have two input files. input1.txt: id above id below id still id getting input2.txt id above value above the sky id below value under the chair im trying to do an awk command and it shows ...
1
vote
1answer
54 views

search 2 files and output the common and print an extra line unix scripting

I have this code, but it's giving me an error awk ' FNR == NR { # reading get_ids_only.txt values[$1] = "" next } BEGIN { # reading default.txt for (elem in values){ if ...
0
votes
2answers
113 views

compare 2 files, delete uncommon strings scripting

I have two files. 1 file has selected the input and parameters the other has all the parameters and definitions example file1.txt message id: "close" message id: "open" message id: "down" ...
0
votes
3answers
52 views

how to parse a line- the content inside quotes or a pattern using unix

I'm trying to grab content inside some formatted text. example input in file: i would like to say ("hi") i am leaving, ("bye") who is there? ("crazy cat") I have a ("dirty dog that needs water") ...
0
votes
1answer
33 views

passing output from a script to my .profile

I have a Script inside my Home Directory. The Script just provides a single message as an output. I'm trying to have my: .profile execute the Script so I can see this message. I'm trying to use my ...
0
votes
3answers
69 views

need to align the csv file in proper format

I have one script which is running and giving an csv file as output in the below format 25-02-2013 RJ D204349194 Pagamento Caixa ...
1
vote
3answers
204 views

parsing ls -R output into a variable in Unix

I am executing a ls-R /files/ I got the following output ./: nvision ./nvision: layout ./nvision/layout: abcd.txt I am looking to get path in the listing like /nvision /nvision/layout/ ...
0
votes
2answers
55 views

How to read the complete path till the end of the directory structure using loop in scripting

I have a following directory structure as /home/ABCD/apple/ball/car/divider.txt, /home/ABCD this is like a root directory for my apps, I can get that easily, and from there all the sub folders may ...
0
votes
2answers
247 views

how to build a folder path in Unix shell scripting for any directory structure

My Application has a folder structure like /PNRPHD1/ex1/11.txt /PNRPHD1/ex1/ex2/11.txt /PNRPHD1/ex1/ex2/ex3/23.txt /PNRPHD1/ex1/ex2/34.txt /PNRPHD1/ex1/ex3/sp4/sp3/4334.txt, but /PNRPHD1 is ...
0
votes
1answer
37 views

Not able to append the new folder name to the existing path in UNIX scripting

This is the following code (while loop) in shell scripting do echo "directory under is @ " ${dir} >>${DEBUG_LOG_FILE} BUP="$PS_HOME/${PSFT_SID}/${dir}"; echo "backup folder created ...
1
vote
3answers
81 views

UNIX script - find files - show dates

I am running the following command: find . -atime -30 However in the output, I would like it to display the time stamp of access time. Also would like it to show the user that accessed the file if ...
0
votes
2answers
106 views

How to printf an exclamation mark in bash?

I need to printf a simple script and redirect the output to a file, but when I do this: printf "#!/bin/bash\ntouch /tmp/1234567890_$RUN" > /tmp/password-change-script_$RUN.sh I get this error: ...
0
votes
1answer
82 views

Perl scripting in Linux bash scripting

I was reading one of the bash script where i have encountered the following lines. I was not able to guess what exactly these following lines are doing ? Can anyone give me some hint regarding what ...
1
vote
2answers
58 views

Is the output of tools like `ip` meant to be parsed?

For example, the Ubuntu lxc-start-ephemeral bash script does the following to detect the IP address of a container that is being launched: # Grab all the public globally routed IPv4 and IPv6 ...
0
votes
1answer
126 views

change solaris ip address using a script

I have always changed Solaris 10 ip address using the classic method by modifying /etc/inet/hosts and /etc/inet/inodes. Is there a way to change the ip address using scripting??
2
votes
1answer
77 views

Bash script inputting multiple variables

I use a simple shell script to block IP addresses that just substitutes my input (an IP) for a variable in an iptables, IPFW, etc. (depending on which platform on) command, but they all basically ...
1
vote
1answer
38 views

Find folders without a specific file in them

I have a number of folders in unix (with different names) that should all have the same few file names in them. I want to find the folders that DON'T have a specific file: For example: A/ ...
0
votes
3answers
485 views

cut command in bash terminating on quotation marks

So I am trying to read in a file that has a bunch of lines with an email address and then a nickname in them. I am trying to extract this nickname, which is surrounded by parentheses, like below ...
2
votes
1answer
111 views

Check first N lines of bash file for string

I am trying to write a bash script that can go through and check only the first N lines of a file to match a specific string. I am able to write a simple command that will check the entire file, but ...
1
vote
1answer
106 views

difference-redirecting to bit bucket(aka /dev/null) vs closing the file descriptor

Is there any difference between the below two commands? ls -l some_non_existing_file 2>/dev/null and ls -l some_non_existing_file 2>&- Both seems to work but I have seen only the first ...
0
votes
3answers
68 views

How to interate based on words in text? (Shell Scripting)

I have a file currently in the form location1 attr attr ... attr location2 attr attr ... attr ... locationn attr atrr ... attr What I want to do is go through each line, grab the location (first ...
1
vote
2answers
194 views

Check whether files in a file list exist in a certain directory

The runtime arguments are as follows: $1 is the path to the file containing the list of files $2 is the path to the directory containing the files What I want to do is check that each file listed in ...
3
votes
3answers
124 views

A shell command for composing a file from chunks of another file

I have a data file and a file containing a list of positions and I want to generate a file from chunks of the data file. Example: $ cat data abcdefghijkl $ cat positions 0,2 5,8 $ cutter positions ...
1
vote
2answers
255 views

script for moving log files in hourly folders

This is my script : set -x PTH=/data0101/track_logs cd /data0101/track_logs if [[ `ls -lrth | grep IMEI_TRACK | wc -l` -gt 0 ]]; then FILE_COUNT=`ls -lrth | grep ...
2
votes
3answers
144 views

Adding comma between command line parameter

I want to call a procedure through unix script, it will be generic script so parameters can very. Calling statement will be some something like <scriptname> <procedure name> ...
0
votes
2answers
160 views

moving files older than one day

I am using the below script to move files older than a day to other directory, and I was just checking with an echo statement whether its working fine. for i in `ls -lhrt | grep TRACK` do ...
2
votes
6answers
89 views

`tr “[1-9]” “['01'-'09']”` not working properly

I am actually trying to cut only the date part from a ls -lrth | grep TRACK output: -rw-r--r-- 1 ins ins 0 Dec 3 00:00 TRACK_1_20121203_01010014.LOG -rw-r--r-- 1 ins ins 0 Dec 3 00:00 ...
4
votes
5answers
132 views

awk with quotes and spaces in bash script

I've the following output in a bash variable set from a received snmp trap: echo $var Nov 27 16:20:34 witness logger: trap: vars: DISMAN-EVENT-MIB::sysUpTimeInstance = 0:6:10:29.06, ...
0
votes
2answers
70 views

Windows TYPE to Console recreated using Unix Shell scripting

We have simple Windows batch files that when an error occurs, an "ONCALL.bat" file is run to display support information that is maintained in a separate oncall.txt text file. This is our SOP. ...

1 2 3 4 5 8