Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
grp-bio-it
linuxcommandline
Commits
c40d2e52
Commit
c40d2e52
authored
Jan 24, 2017
by
Marc Gouw
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.embl.de:dinkel/linuxcommandline
parents
18cebe54
fa8a33a8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
linux_beginner/acknowledgments.rst
linux_beginner/acknowledgments.rst
+1
-0
linux_intermediate/_build/latex/IntermediateLinuxCourse.pdf
linux_intermediate/_build/latex/IntermediateLinuxCourse.pdf
+0
-0
linux_intermediate/basic_scripting.rst
linux_intermediate/basic_scripting.rst
+6
-0
No files found.
linux_beginner/acknowledgments.rst
View file @
c40d2e52
...
...
@@ -16,6 +16,7 @@ All other graphics © Frank Thommen, EMBL Heidelberg, 2012
Special thanks go to contributors / helping hands (alphabetical order):
* Renato Alves
* Christian Arnold
* Jean-Karim Hériché
* Nicolai Karcher
...
...
linux_intermediate/_build/latex/IntermediateLinuxCourse.pdf
View file @
c40d2e52
No preview for this file type
linux_intermediate/basic_scripting.rst
View file @
c40d2e52
...
...
@@ -845,6 +845,12 @@ echoing each command before executing it. This option can be :index:`set` and :
during runtime with ``set -x`` / ``set +x`` (sh/bash) and ``set echo`` / ``unset echo``
(csh/tcsh).
It can also be helpful to ``set -e`` / ``set +e``, which will cause the script to exit
immediately, if any of the commands within it fails (returns non-zero exit status)
during execution. This can save you waiting to the end of execution when some
intermediate step has failed, and also help to identify at exactly which step your
workflow is breaking.
Command Substitution
--------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment