Questions tagged [bash]

{bash} is used for everything that concerns bash commands and LaTeX like using the package {bashful}.

is used for everything that concerns bash commands and LaTeX like using the package . If your question is about displaying bash code in a LaTeX document, use the tag, and consider the or packages. If your question includes questions about scripts in other languages, look into the tag.

Syntax Highlighting

If your question or answer includes bash code, you can syntax highlight it by doing the following:

<!-- language: lang-bash -->

    code goes here

You can also use lang-csh for csh code. More information here.

Here's an example of what it looks like:

#!/bin/bash

echo "Hello, world!"
58 questions
3
votes
1 answer

Bash script as part of package: how to make LaTeX find it

I'm working on some experimental package that requires LaTeX to execute a Bash script. I'm aware of -shell-escape, etc., and it does work if I simply put the script next to the LaTeX file I'm compiling. However, for distribution, it would be more…
2
votes
2 answers

Is there a bash wrapper for tex output?

I am wondering if there is a bash tool available that I can pipe my latex output through and retrieve a more user-friendly output (i.e. file and line number of error). Currently, I am using a bash script to run pdflatex and bibtex. I develop in Atom…
Brian
  • 121