blob: a99400705ec7e92cc041ce9cc023f72fe40a1b80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Linux
-----
| The output and status codes will be converted to the one of ``bash`` OSX.
| Although it mainly depends on your ``bash`` version (``3.2.57`` on the school's computers).
Generally those differences are pretty minor, here is an example (``line n`` changes).
Linux:
.. code-block::
bash: -c: line 1: syntax error near unexpected token `newline'
bash: -c: line 1: `>'
OSX:
.. code-block::
bash: -c: line 0: syntax error near unexpected token `newline'
bash: -c: line 0: `>'
.. note::
I've tried with ``bash5.1.4`` at home and most of the test are converted but don't be surprised if it's not the case for some of them.
|