Sponsored Content
Full Discussion: Beginner: script headache
Top Forums Shell Programming and Scripting Beginner: script headache Post 302983315 by wisecracker on Monday 10th of October 2016 06:43:48 AM
Old 10-10-2016
Hi Don...

I stand corrected...

Thanks...

EDIT:
Sorry about the edit but......
Just noticed the semi-colons, can you explain why they are needed?

---------- Post updated at 11:43 AM ---------- Previous update was at 10:09 AM ----------

It seems like this does work too...
Code:
#!/usr/local/bin/dash
a=$1
b=$2

if ( [ "$a" = "A" ] || [ "$a" = "a" ] ) && ( [ "$b" = "B" ] || [ "$b" = "b" ] )
then
        echo "Conditions are met."
else
        echo "Conditions are not met."
fi

Results, OSX 10.7.5, default [bash] terminal but calling 'dash'.
Code:
AMIGA:barrywalker~> cd Desktop/Code/Shell
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh a
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh b
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh "" b
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh b ""
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh a ""
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh "" a
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh a a
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh a b
Conditions are met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh b a
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh b b
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh A b
Conditions are met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh A B
Conditions are met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh a B
Conditions are met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh B B
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh B A
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh B b
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh B a
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh A A
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> ./AND_OR.sh b B
Conditions are not met.
AMIGA:barrywalker~/Desktop/Code/Shell> _


Last edited by wisecracker; 10-10-2016 at 07:44 AM.. Reason: This extra code was supposed to be in a new window, no idea why it is an EDIT!
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script for Beginner

I have a folder with lots of file. e.g. a.txt, b.txt, c.txt.... I want to put these files from the source directory and place them in a destination directory in a specific order, such as /destination/a/a.txt, /destination/b/b.txt, /destination/c/c.txt, ...... Please help. Thx :confused: (3 Replies)
Discussion started by: aaron_fong
3 Replies

2. Shell Programming and Scripting

Beginner needs help with script

I would like to get a sample script (ksh or bash, or both so I could see the differences) What I want to do with the script is send an daily email to myself that contains the following: The number of files in a directory The total size of the files in that directory The contents of a file... (2 Replies)
Discussion started by: martyb555
2 Replies

3. Shell Programming and Scripting

What's wrong here? (Beginner's script)

Hi Folks, New member here. I have been using UNIX systems for the past ~4 years (Linux, AIX, HP-UX, mostly) but have never had the need to write a script for myself. Now, things have changed and I'm in a bit of a pickle. I have, what looks to me like a syntactically correct script that's not... (2 Replies)
Discussion started by: pallak7
2 Replies

4. Shell Programming and Scripting

Need help with (beginner?) script

I am in an intro to unix/linux course, and need some help with a project. We are tasked with creating a basic script to automate a task that an Admin might need to do. We submitted ideas and mine was to have the system keep a record of log in and log out times for users. I thought this was going... (3 Replies)
Discussion started by: DethbyNo
3 Replies

5. Shell Programming and Scripting

Beginner shell script help

. ./testFile.sh url=http://ichart.finance.yahoo.com/table.csv?s= suf=&d=5&e=9&f=2009&g=d&a=1&b=4&c=1999&ignore=.csv wget $url$s1$suf; sleep 10; cat header.txt > $s1.txt; chmod 777 $s1.txt; sed '1d' table.csv?s\=$s1 >> $s1.txt; rm -Rf table* Very new at shell scripting as you can see... (3 Replies)
Discussion started by: harte
3 Replies

6. Shell Programming and Scripting

Debugging a beginner shell script...

I have been following a tutorial on bash which has proven to be very helpful. However, i am stuck with a command not found issue when asking for a y/n response from the user. Below is the part of code I believe is giving me grief... I have been trying to work through this for 3 hours now.... Please... (5 Replies)
Discussion started by: brokepunk
5 Replies

7. Shell Programming and Scripting

Shell script (beginner) need help...

Hello, I'm new to Sheel script and I need your help for a script I need to develop (for me). Indead, I have a software which log all entry from internet and save it in text file. But, the log is practically unreadable because every 256 characters jump to a new line (even if the message is... (5 Replies)
Discussion started by: acidoangel
5 Replies

8. Homework & Coursework Questions

Shell-script loops beginner

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: "Create a shell script that changes the selected word to another word in all files from selected archive. The... (1 Reply)
Discussion started by: oibanuelos
1 Replies

9. Homework & Coursework Questions

Shell Script (beginner)

1. The problem statement, all variables and given/known data: Arguments: http://farm9.staticflickr.com/8070/8212131370_8b6e8c10c5_c.jpg I am given these three arguments. $1, $2, $3 The first argument is the path to a directory. So, how would I go into the directory and compare files? I... (5 Replies)
Discussion started by: spider-man
5 Replies

10. UNIX for Dummies Questions & Answers

Beginner needs help with first script

Hi, so I have been doing ok making a relatively simple script just processing some data. However I am now at the point where im struggling to find the specific help I need. I have files in the form of yyyy.ddd.hh.mm.ss.stationnumber.component (they are earthquake events). eg.... (12 Replies)
Discussion started by: neneman3000
12 Replies
HEADACHE(1)							  [FIXME: manual]						       HEADACHE(1)

NAME
headache - A program to manage the license of your source file. SYNOPSIS
headache [-h file] [-c file] [-r] [-help | --help] file... DESCRIPTION
This manual page documents briefly the headache command. This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. It is a common usage to put at the beginning of source code files a short header giving, for instance, some copyright information. headache is a simple and lightweight tool for managing easily these headers. Among its functionalities, one may mention: o Headers must generally be generated as comments in source code files. headache deals with different files types and generates for each of them headers in an appropriate format. o Headers automatically detects existing headers and removes them. Thus, you can use it to update headers in a set of files. COMMAND LINE OPTIONS
file Name of one file to process -h file Create a header with text coming from file -c file Read the given configuration file -help, --help Display the option list of headache USAGE
Let us illustrate the use of this tool with a small example. Assume you have a small project mixing C and Caml code consisting in three files 'foo.c', 'bar.ml' and 'bar.mli'', and you want to equip them with some header. First of all, write a header file, i.e. a plain text file including the information headers must mention. An example of such a file is given in figure 1. In the following, we assume this file is named 'myheader' and is in the same directory as source files. Then, in order to generate headers, just run the command : headache -h myheader foo.c bar.ml bar.mli Each file is equipped with an header including the text given in the header file 'myheader', surrounded by some extra characters depending on its format making it a comment (e.g. '(*' and '*)' in '.ml' files). If you update the header file 'myheader', you simply need to re-run the above command to update headers in source code files. Similarly, running : headache -r foo.c bar.ml bar.mli removes any existing in files 'foo.c', 'bar.ml' and 'bar.mli'. Files which do not have a header are kept unchanged. CONFIGURATION FILE
File types and format of header may be specified by a configuration file. By default, the default builtin configuration file given in figure 2 is used. You can also use your own configuration file thanks to the -c option : headache -c myconfig -h myheader foo.c bar.ml bar.mli In order to write your own configuration, you can follow the example given in figure 2. A configuration file consists in a list of entries separated by the character '|'. Each of them is made of two parts separated by an '->'. The first one is a regular expression. (Regular expression are enclosed within double quotes and have the same syntax as in Gnu Emacs.) headache determines file types according to file basenames; thus, each file is dealt with using the first line its name matches. The second one describes the format of headers for files of this type. It consists of the name of a model (e.g. 'frame'), possibly followed by a list of arguments. Arguments are named: 'open:"(*"' means that the value of the argument 'open' is '(*'. headache currently supports three models and a special keyword: frame With this model, headers are generated in a frame. This model requires three arguments: 'open' and 'close' (the opening and closing sequences for comments) and 'line' (the character used to make the horizontal lines of the frame). Two optional arguments may be used 'margin' (a string printed between the left and right side of the frame and the border, by default two spaces) and 'width' (the width of the inside of the frame, default is 68). lines Headers are typeset between two lines. Three arguments must be provided: 'open' and 'close' (the opening and closing sequences for comments), 'line' (the character used to make the horizontal lines). Three optional arguments are allowed: 'begin' (a string typeset at the beginning of each line, by default two spaces), 'last' (a string typeset at the beginning of the last line) and 'width' (the width of the lines, default is 70). no This model generates no header and has no argument. skip Skip line corresponding to one of the "match" parameters regexp. For this kind of line, every first part pattern that matches the file basename is taken into account. SEE ALSO
/usr/share/doc/headache/manual.html AUTHOR
This manual page was written by Sylvain Le Gall gildor@debian.org Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Lesser General Public License, Version 2.1 or any later version published by the Free Software Foundation; considering as source code all the file that enable the production of this manpage. AUTHOR
Sylvain Le Gall <gildor@debian.org> Author. COPYRIGHT
Copyright (C) 2003, 2004, 2005, 2006 Sylvain Le Gall [FIXME: source] Feb 15, 2004 HEADACHE(1)
All times are GMT -4. The time now is 02:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy