Sponsored Content
Full Discussion: Shell advanced syntax?
Top Forums Shell Programming and Scripting Shell advanced syntax? Post 302463833 by Scott on Monday 18th of October 2010 02:26:58 PM
Old 10-18-2010
Quote:
Originally Posted by alister
Every single command run on a UNIX/Linux/POSIX system will return an exit status. If that exit status is 0, the shell treats that as a boolean true. Any other exit status is treated as a boolean false.

Regards,
Alister
I certainly wouldn't challenge your assertion of that. But I would challenge any assertion that said return codes are always meaningful:

Code:
/root # yum install jiggery-pokery
Loaded plugins: fastestmirror, priorities
Determining fastest mirrors
 * addons: mirror.atrpms.net
 * base: mirror.switch.ch
 * extras: mirror.atrpms.net
 * updates: ftp.halifax.rwth-aachen.de
addons                                                   |  951 B     00:00     
addons/primary                                           |  202 B     00:00     
base                                                     | 2.1 kB     00:00     
base/primary_db                                          | 1.6 MB     00:01     
extras                                                   | 2.1 kB     00:00     
extras/primary_db                                        | 188 kB     00:00     
updates                                                  | 1.9 kB     00:00     
updates/primary_db                                       | 670 kB     00:00     
Setting up Install Process
No package jiggery-pokery available.
Nothing to do
/root # echo $?
0

Or perhaps alt's confusion is based on the interpretation of
Code:
if [[.....]] ; then
   [[ -f ... ]] && \
      export  ... || \
      { 
      echo ...; exit; 
      }

where the || relates not to the failure of the export command, but more to that of the test which precedes it?
This User Gave Thanks to Scott For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Help with a shell syntax

I have a variable named "xyz" Now what will the below snippet mean: if ( ${?xyz} ) then .... endif What does ? signify here. Thanks (12 Replies)
Discussion started by: vibhor_agarwali
12 Replies

2. Shell Programming and Scripting

Shell syntax

I'm having simple question here, and what's the different here? What is the "x" for? Thanks! (5 Replies)
Discussion started by: redstone
5 Replies

3. Shell Programming and Scripting

syntax of c shell

i have this program in bash shell: #!/bin/bash array=(20 20 20 20 20) i=0 j=0 awk '/%/ {print $3}' try.txt| while (read s) arr=$s i=`expr $i + 1` echo "$i" end how can i convert this into c shell? (1 Reply)
Discussion started by: npatwardhan
1 Replies

4. Post Here to Contact Site Administrators and Moderators

Where can I download the VTC - Unix Shell Scripting Advanced complete video

Where can I download the VTC - Unix Shell Scripting Advanced complete video. I don't know in which thread I should post this question.Plz help me out, or just tell me the link in the reply to this post. Thanks in advance. (0 Replies)
Discussion started by: villain41
0 Replies

5. Shell Programming and Scripting

shell variables advanced

Hi all, i have more questions but its all about variables so lets begin 1st, is possible to list all variables ? Command env display only shell variables, but what if i declared another variable? Command set display more variables but not defined by me. 2nd, what difference is between set... (24 Replies)
Discussion started by: wakatana
24 Replies

6. UNIX for Dummies Questions & Answers

| help | unix | grep (GNU grep) 2.5.1 | advanced regex syntax

Hello, I'm working on unix with grep (GNU grep) 2.5.1. I'm going through some of the newer regex syntax using Regular Expression Reference - Advanced Syntax a guide. ls -aLl /bin | grep "\(x\)" Which works, just highlights 'x' where ever, when ever. I'm trying to to get (?:) to work but... (4 Replies)
Discussion started by: MykC
4 Replies

7. Shell Programming and Scripting

Advanced error handling in shell scripts

Hi all I've got a question regarding error handling in shell scripts. My background is mainly object oriented programming languages, but for a year or so I've been doing more and more (bash) shell scripting (which I quite enjoy by the way). To handle errors in my scripts I... (3 Replies)
Discussion started by: script_man
3 Replies

8. Homework & Coursework Questions

Trouble with Advanced Shell Programming

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: I am working on a hands on project. We are creating a script for a corporate phone list. The project I am... (2 Replies)
Discussion started by: SarahBelle7858
2 Replies

9. UNIX for Beginners Questions & Answers

Need help to convert syntax to shell

Hi Folks - I need help converting a piece of code from batch to bash. Here is the code: FOR /f "eol=; tokens=1,2,3,4 delims=, " %%i in (Update_Subvars.txt) do ( ECHO alter database %%i.%%j set variable %%k %%l; ) What it's doing is retrieving the values from this file: ... (2 Replies)
Discussion started by: SIMMS7400
2 Replies

10. UNIX for Beginners Questions & Answers

Syntax error C shell

Hello, I have a newbe syntax error but I cant find it syntax error: unexpected end of file #!/bin/csh # pe request #$ -pe mpi_16 32 #### 16 core : 'mpi_16 16' || 24 core : 'mpi_24 24 ' # our Job name #$ -N test2MD #$ -S /bin/sh (1 Reply)
Discussion started by: dulceC
1 Replies
METALINK(1)						      General Commands Manual						       METALINK(1)

NAME
metalink -- commandline metalink generator SYNOPSIS
metalink [input files] [ < mirror list] DESCRIPTION
This manual page documents briefly the metalink command. This manual page was written for the Debian distribution because the original program does not have a manual page. metalink allows you to generate metalinks from a list of mirrors and a collection of files. The files are hashed and the resulting metalink is generated on the stdout. OPTIONS
These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. -h --help Produce a help message --version Print out the name and version. --md5 Generate metalink from md5sum file(s). --addpath path Append a path to the mirrors ('/' is not checked) --headerfile arg Include file after the root element declaration. --nomirrors Don't read mirrors from stdin --hashlist List hashes only (implies nomirrors) --desc arg Add metalink description -d arg Include given digest --mindigests Include: md5 sha1 --somedigests Include: md5 sha1 ed2k --alldigests Include all possible digests Supported algorithms are (-d options): md4 md5 sha1 sha256 sha384 sha512 rmd160 tiger crc32 ed2k gnunet sha1pieces Mirror lists are single line definitions according to: [location [preference] [type] % ] mirror base url EXAMPLES
http://example.com/ as a mirror: echo http://example.com | metalink -d md5 -d sha1 * http://example.com/ as a mirror with preference and location: echo us 10 % http://example.com | metalink -d md5 -d sha1 * http://example.com/ as a mirror with preference only: echo 0 10 % http://example.com | metalink -d md5 * AUTHOR
This manual page was written by A. Bram Neijt bneijt@gmail.com for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. METALINK(1)
All times are GMT -4. The time now is 01:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy