1
vote
1answer
22 views

Generally, when we should change the IFS variable back to its original value in scripts

For example, I have this script and I Call it via a cronjob: IFS=$'\n' for i in `cat "$1"`; do echo "$i" >> xtempfile.tmp; done It works fine without causing any issues. But when I call ...
1
vote
1answer
34 views

Can someone explain this short getopts bash script in plain english? (UNIX)

This is the script: file=$1 while getopts ":ivr" opt; do case $opt in i) iopt=1;; v) vopt=1;; r) ropt=1;; \?)echo "invalid option: -$OPTARG" > esac done shift $(($OPTIND-1)) So the only part I ...
0
votes
2answers
31 views

Filter non-alphabetic characters out of string in shell script

Very simple question but can't seem to find a simple answer... I am writing a bash script which needs to remove all non-alphabetic and non-numeric characters. Eg. I want... INPUT_STRING="ABC# ...
0
votes
2answers
35 views

Checking output of multiple variables in bash

Right now I have multiple commands defined as variables in my bash script like so: LSIBATTSTATE=`/var/lib/einarc/tools/lsi_megacli/cli -AdpBbuCmd -GetBbuStatus -aALL | grep 'Operational'` ...
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 ...
0
votes
2answers
73 views

bash script unable to get the variable

On command line this works like this: svn log "$src_url" --stop-on-copy \ | awk -v RS="--+" -F'|' ' /ticket-101/{print $1}' \ | grep "^r" \ | cut -d"r" -f2 \ | cut -d" " -f1 Output: 6359 ...
0
votes
0answers
15 views

Passing parameter to FTP macro

I have developed a bash script that contains an FTP invocation. Because the actions i do are based on a routine i have added a macro inside the .netrc file in my home directory. This is a small ...
0
votes
0answers
11 views

rdiff-backup errors: script keeps quitting with error

Ive recently been introduced to bash scripting... So, Ive used my advanced theft course to throw together the attached script. it runs... and exits with "/xxx/ not mounted. You are not root! I have ...
0
votes
1answer
22 views

Running script on a remote server in bash working on 1 server, not on the other

When I am running this script on 2 servers in hostnames, it succeeds on one of them, but not on the other. The log output is pretty ugly, so I won't post all of it. Here is part of the bash_history, ...
1
vote
2answers
43 views

bash scripting, how to parse string separated with :

I have lines that look like these value: "15" value: "20" value: "3" I am getting this as input pipe after grepping ... | grep value: What I need is a simple bash script that takes this pipe ...
0
votes
2answers
22 views

Finding max lines in a file while printing file name and lines seperately?

So I keep messing this up and I think where I was going wrong was that the code i'm writing needs to return only the file name and number of lines from an argument. So using wc I need to get ...
2
votes
5answers
60 views

File with the most lines in a directory NOT bytes

I'm trying to to wc -l an entire directory and then display the filename in an echo with the number of lines. To add to my frustration, the directory has to come from a passed argument. So without ...
0
votes
2answers
26 views

Erroring out for passed argument less than 1, what am I doing?

I'm trying to get a script to echo a message when a number like -9 is entered. The arguments have to be passed from the command line This is what I have now. #!/bin/bash #Assign1part1 if (( $# != ...
0
votes
4answers
52 views

Shell Script for counting down passed argument

So I was working on a project tonight and assumed based on my poor understanding that the requirement was to create a script to take a number and count down to 1 with commas on the same line. A few ...
0
votes
5answers
54 views

Generating a comma-separated sequence of numbers based on input in Bash

I've found more than few things on here to help me as I'm learning to code in Bash and they all come close but not quite. I need to take an input of a positive integer and print out on a single line ...
0
votes
2answers
31 views

optimizing this script to match lines of one txt file with another

Okay so I am at best a novice in bash scripting but I wrote this very small script late last night to take the first 40 character's of each line of a fairly large text file (~300,000 lines) and ...
2
votes
3answers
42 views

How can I return grep results one line at a time in order to use the parsed data in another script?

I have a script that I use at work that I'd like to expand on a bit. The script I'm currently using takes an IP address as an arg and pushes a zip file to a specific directory on that device. The ...
2
votes
3answers
39 views

How to create multiple files with random data with bash

How do I create multiple files (More than 20k, I need these files to run a test for syncying) with random data in OS X? I used a previously answered question (OS X - How Can I Create Multiple Files ...
0
votes
2answers
69 views

How to compare strings in bash? [closed]

This drives me crazy, I have this script pasted in shell: a=""; for f in $(ls -d -- */); do if [[ "$a" != "index/" ]]; then a="$a---$f--- "; fi done; echo "$a"; And what I get? ---index/--- ...
1
vote
4answers
45 views

bash echo executes command instead of printing it

I have simple bash command that I need to put in shell: `for f in $(ls); do echo "File -> $f"; done` What I get is: -bash: File: command not found I don't understand why bash is trying to ...
0
votes
3answers
38 views

bash: read string into array bash with spaces preserved [duplicate]

I have string "hi how are you" I want to put this string into an array as shown below. But i want to preserve spaces. Any ideas on how to do that? a[0] a[1] a[2] 3 4 5 6 .... should ...
1
vote
1answer
30 views

bash if statement issue, cannot evaluate gt

Here is a part of my bash script. I want to track that the script is running. so each time it runs the counter will increment, when the counter hits X (3 for my test) something will happen. I also ...
1
vote
0answers
38 views

How do I make an alias work when I need to invoke more than one binary in the same command? [migrated]

Say I have two binary files: binary1 and binary2. Each of them has its own option set: options1 and options2. Users need to invoke a command that follows this structure: binary1 options1 binary2 ...
-1
votes
2answers
41 views

Bash: update variable that uses a updated variable

I am trying to get a little Backupscript running and I'm kinda stuck with something maybe so easy, but I cannot get it to work. I use echo "backup 1 started" / echo "backup 1 ended" after each part ...
0
votes
2answers
40 views

Accessing shell script arguments by index

I'm sure this is a no-brainer when you're into shell programming. Unfortunately I'm not and I'm having a pretty hard time ... I need to verify arguments passed to a shell script. I also want to store ...
1
vote
3answers
52 views

Command not found when running swapon with SSH [closed]

I'm trying to use "swapon -s" remotely but getting "command not found" $ ssh ns2 swapon -s bash: swapon: command not found Using it locally works perfectly, what could be the reason for this?
2
votes
1answer
60 views

Does the bash shell consider an assignment like “fact=2” as integer or long?

Does the bash shell consider variable fact as integer or long by default if you are making an assignment like below? fact=2
0
votes
1answer
45 views

Searching through multiple directories in bash

I'm trying to figure out how I would search through multiple directories, defined with pushd, in order to find the disk space of the folders in the list, as well as whether any of the folders are sym ...
0
votes
3answers
41 views

Getting parent's directory name by piping the results of dirname to basename in a Bash script

Given a path like this test/90_2a5/Windows I am trying to get the result 90_2a5 using the commands dirname to get the path and after basename to get the name. The problem occurs when i try to make ...
1
vote
3answers
65 views

Extract version number from a string

I have a string with components and version numbers: ...
0
votes
1answer
34 views

assistance in writing a bash function

i want the function "printReps" to print "error" 1 time for every number that it receives more than once, however it is only printing an empty line. here is the code can anyone tell me where is my ...
2
votes
1answer
44 views

Substitute a bash script variable twice

I would like to know if I can substitute a variable twice. For example: #global variable TEST_SERV_EXT="" #variables become from myconf.sh TEST_SERV_EXT_FO='foo01' TEST_SERV_EXT_BR='bar01' I ...
-1
votes
1answer
35 views

How to combine Case with shift and add results in a list in bash

When I write parameters they should be checked in a case and then added in a list if u type -c in front the parameter should be in uppercase and if u type -4 the parameter should appear 4 times ...
1
vote
2answers
31 views

strange error when passing argumento to bash script

I am not expert of bash scripting, but I really don't understand what is appening here. My script is this: #!/usr/bin/env bash echo "calling asetup" export ...
0
votes
4answers
94 views

Count line lengths in file using command line tools

Problem If I have a long file with lots of lines of varying lengths, how can I count the occurrences of each line length? Example: file.txt this is a sample file with several lines of varying ...
2
votes
3answers
61 views

Clearing archive files with linux bash script

Here is my problem, I have a folder where is stored multiple files with a specific format: Name_of_file.TypeMM-DD-YYYY-HH:MM where MM-DD-YYYY-HH:MM is the time of its creation. There could be ...
0
votes
2answers
24 views

Multiple Conditionals and globbing in Bash

So have I got this right? In Bash, I can use globbing to test strings for patterns if I use double-brackets around the condition: if [[ $var = abc* ]] and I can test for multiple conditions if I ...
1
vote
2answers
59 views

awk script to process 400 .txt files

I have a nice .awk script that takes the 2nd $2 value and prints it. Because the data in the .txt files only go down 8192 lines, any lines after that are irrelevant (the script takes care of that.) I ...
0
votes
1answer
21 views

Embedded shell script with RCP app

I have an RCP application packaged by a PDE build. Also in this application in one of the plugins I have a directory called "scripts" with shell scripts that I want to run. Everything works ok if I ...
1
vote
0answers
30 views

Including password in script on Debian [closed]

I have set up a server for testing and playing around with. To make it sort of more secure I want to add an incredible long root password (One of many steps to secure the server). To login to root ...
0
votes
3answers
40 views

script to compress user files via searching through folders for certain folder name

I'm writing a function for one of my programs that will need to search through a number of folders until we find a folder called "userfiles" then we tar up this folder giving the filename of the ...
1
vote
3answers
43 views

Whats the windows equivalent of this simple bash string manipulation?

I'm once again, wishing I could use bash while trying to do some windows batch stuff. What's a short, windows batch equivalent of this Bash expression? $ var="EIPADDRESS=192.168.20.139"; ...
0
votes
2answers
39 views

php exec() works on some calls, not other similar ones

I have a php script that cuts up video. Here are three exec() commands - two execute properly while one does not: Works: sudo ffmpeg -i /home/vidserver/videos/$filename.mp4 -ss $ctime -t 00:00:06 ...
1
vote
2answers
55 views

Scroll linux shell script output without piping

I have a linux bash script.sh. I can easily scroll the output like this: $ ./script.sh | less But how do I make the output display scrollable automatically, without having to pipe it through ...
0
votes
3answers
71 views

Shell Script to replace multiple instances of unix timestamps in a file

I have a file which has data similar to the following: > <Element > Stream="12" > Target_trans="133106" > Trans="48467" > fileModTime="1358349304" ...
0
votes
2answers
69 views

Finding multiple files recursively and renaming in linux

I am having files like a_dbg.txt, b_dbg.txt ... in a Suse 10 system. I want to write a bash shell script which should rename this file by removing "_dbg" from all files. Google suggested me to use ...
1
vote
2answers
46 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
97 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 ...
1
vote
2answers
33 views

bash: script that allows user to change directory based on ouput from another program

Background: This question is about using the cd command in a bash script or alias. There is a related SO question here: Why doesn't "cd" work in a bash shell script? Problem: Suppose ...
0
votes
1answer
44 views

Using special “replace” characters in a bash script

I want to use the !!, !$,^abc^cde, etc. aliases in a bash script. Sadly, I cant seem to make them work in a script (They work just fine in interactive mode), Does anybody know what the problem is? If ...

1 2 3 4 5 23