Sponsored Content
Top Forums Shell Programming and Scripting Syntax error in subtraction in Bash Post 303040009 by Chubler_XL on Monday 21st of October 2019 08:56:18 PM
Old 10-21-2019
Nice wisecracker. This method would rap up into a fun little bash sum function:

Code:
function sum
{
   local word exp var

   [[ "$1" = *= ]] && var="-v ${1%=}" && shift

   for word in "$@"
   do
       case "$word" in
          [0-9.]*|-[0-9.]*|+|-)
              printf -v ans "%.f" "${word}e+12" 2>/dev/null || ans=$word
              exp="$exp $ans" ;;
          *) echo "sum: $word operator not supported" >&2 ; exit 1 ;;
       esac
   done
   printf $var "%.8f\n" $(( $exp ))e-12
}

sum val= 3.58047 - .68 + .858 + -1.2
echo $val

These 2 Users Gave Thanks to Chubler_XL For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

BASH Script syntax error

I'm trying to write a simple script that takes all the .tar.gz files in a directory and verifies them by using the gzip -tv command: for zip in *.tar.gz do gzip -tv $zip if ; then #Check return code from tar echo "File ${zip} verified OK." exit... (4 Replies)
Discussion started by: kelldan
4 Replies

2. Shell Programming and Scripting

subtraction in bash arrays

hi i am using bash shell to perform some subraction. here is what i have: i have a while loop and am using i as a counter. diff= `expr ${ARRAY1} - ${ARRAY2}` for example array1 has -0.7145 and array2 has -0.7041. when i try the above command, i get expr: non-numeric argument. any... (6 Replies)
Discussion started by: npatwardhan
6 Replies

3. Shell Programming and Scripting

bash syntax error: command not found

I am trying to create a shell that asks the user to enter their name, and compare it to my own by saying we have the same name or saying my name and that they have a nice name too. Here is my script... #!/bin/bash-x echo "Enter your name". read name if then echo "My name is Adam too"... (1 Reply)
Discussion started by: amaxey45
1 Replies

4. Shell Programming and Scripting

Bash syntax error

while read line do mkdir $line scp -r Docking_results/docking_$line.pdb $line/ cd /$line/ set a=`grep ENDMDL docking_'$line'.pdb | wc -l` set b=`expr $a - 2` csplit -k -s -n 3 -f docking_'$line'. docking'$line'.pdb '/^ENDMDL/+1' '{'$b'}' foreach f (... (4 Replies)
Discussion started by: chrisjorg
4 Replies

5. Shell Programming and Scripting

Trying to pass a password: bash: syntax error near unexpected token `('

howdy, so I'm make a plugin work for Nagios, and the commandline is: /usr/lib/nagios/plugins/check_mssql -H MySQLServerName -u MySqlAccountName -p MyPassword(#XXXXX -d MyDatabaseName it is barfing with: bash: syntax error near unexpected token `(' Thoughts? Do I have to wrap something... (2 Replies)
Discussion started by: rgouette
2 Replies

6. Shell Programming and Scripting

-bash: syntax error near unexpected token `('

// AIX 6.1 I am getting a syntax error below. Please advise what to be corrected. :confused: runmqsc CERN.$(echo `hostname` | cut -d'.' -f1 | tr '' '').$(echo $environment | tr '' '') <<! | egrep -i '(FROM.NC.APPLIANCE)' | sort -u |awk '{print $2}' | cut -d '(' -f2 | cut -d ')' -f1 |... (1 Reply)
Discussion started by: Daniel Gate
1 Replies

7. Shell Programming and Scripting

Basic Bash algorithm with sum/subtraction

Hi all, i'm making some test on a data file. Imagine i have two columns inside it : 80377,20 80377,20 80379,19 80378,20 80380,20 80382,20 80381,21 Just to understand how can it works, imagine to subtract 100 to the number in the first column when the other one in the second... (4 Replies)
Discussion started by: Board27
4 Replies

8. Shell Programming and Scripting

Bash function using variable in it syntax error

The below bash function uses multiple variables CODING, SAMPLE, SURVEY, andvariant in it. The user selects the cap function and details are displayed on the screen using the $SURVEY variable, the directory is changed to $SAMPLE and the samples.txt is opened so the user can select the sample to... (6 Replies)
Discussion started by: cmccabe
6 Replies

9. Shell Programming and Scripting

Bash calling a few functions syntax error

In the bash function below if the user selets "y" then the menu function is called and if they select "n" the move function is called. That all seems to work, my question is after the files are moved an echo, line in bold is displayed and another function called backup is called. I am getting a... (1 Reply)
Discussion started by: cmccabe
1 Replies

10. BSD

Keep getting error "-bash: ./.profile_z2: line 52: syntax error: unexpected end of file"

#!/bin/bash #-------------------------------------------------------- # Setup prompt # Author Zeeshan Mirza # Data: 06-08-2017 #-------------------------------------------------------- if then . ./.profile_custom_pre fi umask 022 set -o vi export EDITOR=vi export VISUAL=vi... (3 Replies)
Discussion started by: getzeeshan
3 Replies
DDIS(5) 							File Formats Manual							   DDIS(5)

Name
       DDIS - Digital Data Interchange Syntax / ISO ASN.1 (DDIS/ASN.1) files

Description
       DDIS/ASN.1 files conform to Digital's Digital Data Interchange Syntax.  DDIS conforms to syntaxes that can be defined within the specifica-
       tions of International Standards Organization Abstract Syntax Notation One (ISO ASN.1), but is not itself an  implementation  of  full  ISO
       ASN.1 syntax.

       DDIS/ASN.1 files conform to the DDIS/ASN.1 syntax.  The DDIS/ASN.1 syntax is itself used to define other syntaxes.  The following are among
       the syntaxes that are subsets of DDIS/ASN.1:

	      DDIF   Digital Document Interchange Format

	      DTIF   Digital Table Interchange Format

	      DOTS   Data Object Transport Syntax

       Files that conform to one of the DDIS/ASN.1 family of syntaxes are described as DDIS/ASN.1 files.  More specifically,  however,	the  files
       are typed according to a particular DDIS/ASN.1 syntax.  For example, a file that conforms to the DDIF syntax is a DDIF file, and is identi-
       fied by the command as a ddis/ddif file. The command includes the string ddis/ as a part of its output if a file belongs in the	DDIS  fam-
       ily.

See Also
       ctod(1), dtoc(1), DDIF(5), DOTS(5), DTIF(5), CDA(5)

																	   DDIS(5)
All times are GMT -4. The time now is 08:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy