0
votes
1answer
26 views

cygwin kill process issue

I am trying to run a shell script in Cygwin, but I am having problem with passing variables to the subshell !! I have a very simple script that actually takes the PID of a process and from there I ...
0
votes
1answer
18 views

cURL - notify about upload progress

I have script in Xcode, which runs automatically at the end of Archive operation. It's signing and submitting build to TestFlight service. The problem is that uploading takes a lot of time, and I ...
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
2answers
32 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# ...
1
vote
3answers
47 views

What does single parenthesis do here?

I encountered this code: file=$(<filename) This reads the file from the filename. My question is how does this work? I read from this post: bash: double or single bracket, parentheses, curly ...
2
votes
4answers
85 views

Bash script - If conditional with [ ]

I have the code below and am receiving the following error output: Enter your exam score 40 ./if2.sh: line 6: 40: No such file or directory Very well done. You have an A grade. I'm using bash ...
1
vote
2answers
66 views

Bash Script Issues

I am having a problem with a bash script that I am working on, I am practically new to Bash Scripting and been working on this problem for hours and cant figure out what the problem could be. When I ...
2
votes
3answers
36 views

Running Bash Script Without ending it on Exit

Basically, I'm working on a remote server, and connecting via SSH. Now, I can run processes / execute bash scripts normally with my SSH console, but there's one problem. As soon as I log off, those ...
1
vote
1answer
51 views

“/bin/bash -l” Invalid option

Well, I am trying to run serial MPI jobs masked as a one job on our supercomputer. The main submission script basically looks like that: #!/bin/bash -l #PBS -l nodes=4:ppn=8,walltime=24:00:00 cat ...
0
votes
2answers
29 views

Bash script with regex find/replace to vertically-align assignment operators in file

I have a collection of (jade template) files with properties listed like this: a.btn(data-ng-class = "{true:'black', false:'blue'}[viewModel.currentDictionaryUid == '<%= full.uid %>']", href = ...
1
vote
2answers
30 views

Bash script iterate over files recusively and save output to file with identical name but different extension

I'm trying to recursively iterate over all my .html files in a directory and convert them to .jade using a bash script. #!/bin/bash for f in ./*.html ./**/*.html ; do cat $f | html2jade -d > $f ...
4
votes
4answers
71 views

How to insert text at the beginning and ending of a specified line?

I would like to insert some text at the beginning and ending of a specified number line, like i have this txt file : apple banana orange pineapple To insert at the beginning and ending for the ...
1
vote
1answer
20 views

make getopts error when optionstring does not start with a dash

I am writing a script that uses getopts for options that require arguments and some that do not. I want getopts to exit with an error if any switches do not start with a '-', rather than simply stop ...
3
votes
1answer
24 views

Handling Spaces In Substring Searches In Bash Shell Scripts

I'm using the following to determine if either substring is present in a $mainString in a Bash (ver 3.2.25) shell script: if [[ $mainString = *cat* || $mainSubstring = *blue cheese* ]]; then echo ...
0
votes
0answers
27 views

Executing BashScript with PHP Issues

I have a bash script that's tied into some python scripts that I would like to execute within a webpage and cat the file it creates on to the page. Currently I haven't been able to execute the script ...
0
votes
4answers
34 views

Decimal for loop shell script

How can I define a for loop in a bash shell script in order to obtain decimal values from 0.50 to 1.00 (i.e 0.50 0.51 etc.) I've found something like this: for I in $(seq 50 100) do echo $I 10 | ...
0
votes
1answer
17 views

Connect to ftp using .netrc with multiple accounts

I have created a .netrc file so i can have some macros and automatically make some standard operations inside my ftp server. The problem is that now every time i connect to this machine it always ...
3
votes
1answer
57 views

How to call a bash script automatically when a directory containts chage

My goal is to run a bash script automatically whenever any new file added to a particular directory or any subdirectory of that particular directory. Detail Scenario: I am creating an automated ...
3
votes
4answers
47 views

sed: insert a macro with backslashes and newlines before a line in a file

I have text in a file like: #include<stdio.h> #include<stdlib.h> #define MIN 0 #define MAX 100 I want to insert a macro before the 1st #define like: #include<stdio.h> ...
2
votes
1answer
37 views

How to change parameter in a file, only if the file exists and the parameter is not already set?

#!/bin/bash # See if registry is set to expire updates filename=hostnames > test.log PARAMETER=Updates FILE=/etc/.properties CODE=sudo if [ ! -f $FILE] && grep $PARAMETER $FILE; then echo ...
0
votes
3answers
40 views

Looping over a Bash array: getting the next element in the middle of the loop

Searching an array (lines_ary[@]) which has read a file into it, I'm trying to find a version number in the text. Here I am looking for Release, so I can find the version number that follows. Is ...
1
vote
2answers
53 views

awk sed filter values in all lines greater/smaller than

is there a way to construct a filter in awk (or something similar) that for a given file, say: 0.99,0.98,1.1,0.85,0.92 0.76,1.4,0.99,0.99,0.82 1.0,1.45,0.78,0.91,0.95 would replace any record in a ...
1
vote
3answers
30 views

Bash: enumerate all the attached devices

I plugged several android devices to my laptop. And I can list their SN by adb devices output: List of devices attached 015d4a826e0ffb0f device 015d4a826e43fb16 device 015d41d830240b11 ...
0
votes
4answers
73 views

Scripts: copy only the part between two specified lines

E.g. A file a.txt has the following context aaa bbb ccc ddd eee What's the script that could achieve this goal, such that script.sh a.txt 2 4 output: bbb ccc ddd Where 2 and 4 are the ...
4
votes
6answers
70 views

BASH - How to read file contents to insert results into mysql WHERE clause

I'm trying to make a file (call it accounts) and have a bash script (call it *name_checker*) loop through each line and make it into multiple strings to store in a variable called '$NAMES' for a mysql ...
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
1answer
17 views

How can I use Variable Arguments with wpa_passphrase?

I am writing a bash script where I want to take the network's ssid and password as command line arguments, and use this information to do other stuff. Inside my script I want to use the wpa_passphrase ...
1
vote
1answer
43 views

Bash script IF argument advice

I've just started doing bash scripts today and I need some help :( I have a variable $BE that if the value is less than 75 or greater than 89 then I need to cap the value at these figures so I need ...
1
vote
4answers
61 views

shell script add suffix each line

Question: I need to add some words at the end of each line of a text file. Does anyone know any Linux bash shell script that can do this job? Thanks! Example: add word done at the end of each line: ...
1
vote
2answers
65 views

Calling one Bash script from another Script passing it arguments with quotes and spaces

I made two test bash scripts on Linux to make the problem clear. TestScript1 looks like: echo "TestScript1 Arguments:" echo "$1" echo "$2" echo "$#" ./testscript2 $1 $2 ...
0
votes
0answers
39 views

How do i communicate with SVN using shell

My query is on the same lines as How to handle SVN errors using shell script? However to be more specifiic let me give you the idea of what i am trying to achieve: I am trying the automate the "svn ...
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
38 views

how to find/fetch number in a file using shell script

I am new to Linux Shell script as far as I know using find numbers in a file can be done with grep egrep -o "[0-9][0-9]*" my_file but how do I get the first-digit of these strings and make it a ...
0
votes
2answers
19 views

Input parameter $$ .sh script

I would like to ask that what is the meaning of $$ in a .sh script. My program: #!/bin/sh V1=$1 V2=$2 V3=$$ echo "$V1 $V2 $V3" Calling: ./mypro.sh 1 2 3 Output: 1 2 7215
-1
votes
5answers
38 views

Linux bash script -

I am trying to use whether or not a line contains a date as a condition for an if statement: if [grep -n -v '[0-9][0-9][0-9][0-9]' $line |wc -l==0] then ... The above returns an error. I don't ...
1
vote
1answer
41 views

Script to verify 15 second timestamp difference

With a bash script, I am trying to verify that there is 15 seconds between file modifications. If I have: -rw-rw-r-- 1 root root 2739 Jun 05 00:43 1370392620.log -rw-rw-r-- 1 root ...
1
vote
5answers
47 views

bash - combine log files ending with .1 .2 into the original file

I have log files that ends with .1 .2 because there's a size limit. For example, in my log directory there are files like: log20121212 log20121212.1 log20121212.2 I want to combine files with the ...
1
vote
1answer
33 views

Run a bash script before running a Maven goal in IntelliJ Idea

I have a Maven project that requires a bash script to be run before running "mvn clean install". When I use the terminal (I am on a Mac) I can easily run the script first and then do "mvn clean ...
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
44 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
2answers
29 views

How to run a script that it has to connect 3 solaris servers, do some operations and create files in the machine where the script is running?

I have to do some task of migration of three solaris servers, I have the ip addresses, username and password for each server. The script that I have to run, it does what it has to do with no problems, ...
0
votes
4answers
73 views

Provide password to ssh command inside bash script, Without the usage of public keys and Expect

I am trying to call SSH command through my script, but this script will not run to my machine. So i have 2 limitations. 1)I can not work outside the standards of the shell,so i cant work with ...
0
votes
3answers
54 views

Move files and rename - one-liner

I'm encountering many files with the same content and the same name on some of my servers. I need to quarantine these files for analysis so I can't just remove the duplicates. The OS is Linux (centos ...
2
votes
1answer
26 views

Global variable is reset if loop send output to pipe

According the bash(1) man pages, when I run the following: set -e x=2 echo Start $x while [ $((x--)) -gt 0 ]; do echo Loop $x; done | cat echo End $x The output will be: Start 2 Loop 1 Loop 0 End ...
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
3answers
64 views

detecting command not found in bash script

I have a series of command to execute. However I need to exit whenever 'command is not found' error occurs. So post execution check of output is not an option The "$?" variable is equal zero when ...
1
vote
3answers
62 views

How do i split string contain parentheses into array and remain the substring in parentheses in shell script

I have a string like this: a1="a,b,c,(d,e),(f,g)"; How to get the array like arr=["a","b","c","d,e","f,g"]; I want to replace the comma between parentheses with some other character and revert ...
1
vote
1answer
28 views

Making a Python3 Variable Using a Counter

I have some BASH code that I want to convert to Python3. INPUTINDEX$INPUTCOUNTER="$INPUT" Every time a user types an input the counter (code not shown) increases one number. With this code, the ...
0
votes
0answers
45 views

Killing Process on Remote Host using Fabric

I am writing a script using Fabric which needs to terminate a process remotely. (this means that the command ends up getting executed as /bin/bash command) The current code I have is the following: ...
0
votes
2answers
46 views

How to name output file according to a command line argument in a bash script?

These lines work when copy-pasted to the shell but don't work in a script: ls -l file1 > /path/`echo !#:2`.txt ls -l file2 > /path/`echo !#:2`.txt   ls -l file1 > /path/$(echo !#:2).txt ...

1 2 3 4 5 34