~ubuntu-branches/ubuntu/trusty/abs-guide/trusty-proposed

« back to all changes in this revision

Viewing changes to ex54.sh

  • Committer: Package Import Robot
  • Author(s): Sandro Tosi
  • Date: 2012-06-03 10:57:27 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20120603105727-rm7frl4feikr2swm
Tags: 6.5-1
* New upstream release
* debian/watch
  - updated
* debian/abs-guide.lintian-overrides
  - updated for new upstream code
* debian/control
  - bump Standards-Version to 3.9.3 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
exec echo "Exiting \"$0\"."   # Exit from script here.
 
4
 
 
5
# ----------------------------------
 
6
# The following lines never execute.
 
7
 
 
8
echo "This echo will never echo."
 
9
 
 
10
exit 99                       #  This script will not exit here.
 
11
                              #  Check exit value after script terminates
 
12
                              #+ with an 'echo $?'.
 
13
                              #  It will *not* be 99.