File: bashate.rst

package info (click to toggle)
python-bashate 2.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 743; sh: 202; makefile: 22
file content (44 lines) | stat: -rw-r--r-- 884 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
===========================
:program:`bashate` man page
===========================

.. program:: bashate
.. highlight:: bash

SYNOPSIS
========

:program:`bashate` [options] <file> [files...]

DESCRIPTION
===========

The :program:`bashate` command line utility is a style-checker for
bash scripts.

The name is derived from :program:`pep8`, a Python lint-type tool.

OPTIONS
=======

--help, -h        Print help
--verbose, -v     Verbose output
--ignore, -i      Tests to ignore, comma separated
--error, -e       Tests to trigger errors instead of warnings, comma separated
--warn, -w        Tests to trigger warnings instead of errors, comma separated

EXAMPLES
========

Run all tests on a single file::

    bashate file.sh

Run tests on several files, while also ignoring several errors::

    bashate -i E010,E011 file.sh file2.sh

BUGS
====

http://bugs.launchpad.net/bash8