[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

This is an old revision of the document!


Table of Contents

Přechod z tcsh na bash

Odkazy

* http://en.wikipedia.org/wiki/Comparison_of_computer_shells
* http://kb.wisc.edu/cae/index.php?pagid=9668 Bash shell details

Syntaxe

Na co dát pozor při psaní skriptů:

Proměnné

tcsh:

setenv VARIABLE value

bash:

export VARIABLE=value

Přesměrování výstupu

tcsh:

( command > x.out ) >& x.err

bash:

command > x.out 2> x.err

[ Back to the navigation ] [ Back to the content ]