Hello, If you have such a Sh code block in any Org document, you'll see that the 4th line will be highlighted as an Org comment from the "# != 2"...
#+begin_src sh # swap FILE1 FILE2 swap () { if [[ $# != 2 ]]; then return 1 fi tmpfile=/tmp/.swapper.$$.$RANDOM mv -f $1 $tmpfile mv -f $2 $1 mv -f $tmpfile $2 return 0 } #+end_src If you edit such (via C-c '), you can check that it's NOT highlighted as a comment in the Shell mode. Best regards, Seb -- Sebastien Vauban