Skip to main content

Merge Bash script projects into a single output file

Project description

modash

modash merges Bash script projects into one file.

It resolves source dependencies without executing shell code during normal compile. When a path can only be known by running the script, modash can trace one explicit run and compile from the reviewed result.

Install

python -m pip install modash

For source-tree development:

git clone https://github.com/nmehran/modash.git
cd modash
python -m pip install -e .

No external runtime dependencies are required.

Quick Start

Readable review output:

modash scripts/main.sh merged-context.sh

Runnable output for the supported Bash subset:

modash scripts/main.sh merged.sh --mode executable

If executable mode cannot prove a source site is safe to lower, it fails before writing or overwriting the output file.

Output Modes

Context Mode

Context mode is the default. It writes dependency-first sections for the files modash can resolve, preserves original source lines, and annotates resolved relationships:

# modash: source ./dep.sh -> dep.sh
source ./dep.sh

Use context mode for review, debugging, and collecting complete shell-project context for another tool. It is not a runtime parity mode.

Executable Mode

Executable mode inlines sourced files at their source sites so supported parent shell state remains Bash-equivalent: variables, functions, set state, current directory, source arguments, repeated sources, and function-scoped sources.

The supported static subset includes exact paths, exact variables, safe path commands and file producers, arrays, finite loops, modeled read loops, branch-aware if and case source sites, child-shell source contexts, and bounded source-bearing function calls.

See Supported Source Resolution for the current support matrix and fail-closed boundaries.

Runtime-Dependent Sources

Most source dependencies can be resolved without running the script. When a project chooses a source path at runtime, use runtime discovery explicitly. It runs the target once, records the source files that were actually loaded, writes review artifacts, and then compiles from that reviewed graph. compile-observed rewrites the observed source operations into trusted replay groups and bundles the observed files. The original script still decides whether each source site runs; modash replaces only the source operation that the trusted graph observed.

Use this for patterns like hook dispatchers, plugin loaders, or helper functions where a normal executable compile correctly fails closed because the source path depends on runtime state.

Recommended flow:

modash trace scripts/main.sh --output observation.json -- --flag
modash graph scripts/main.sh --from-observation observation.json --output runtime-graph.json
modash compile-observed scripts/main.sh merged.sh --from-graph runtime-graph.json

The graph and its text report are the review points. They show which source sites ran, which files were loaded, and whether the files still match the trace. One trace represents one execution path; it is not proof that every branch was covered.

If you want to keep a declarative compiler input as a separate file for static executable compile, write an explicit supplement and pass it to executable compile. This remains useful for review and compatibility, while compile-observed is the preferred runtime path:

modash supplement scripts/main.sh --from-graph runtime-graph.json --output source-supplement.json
modash scripts/main.sh merged.sh --mode executable --source-supplement source-supplement.json

For automation, observe-compile performs the explicit trace, writes the graph and report, and compiles from that newly observed graph:

modash observe-compile scripts/main.sh merged.sh --reviewed-graph-out runtime-graph.json -- --flag

Normal compile never traces. Runtime artifacts are data, not shell code. The runtime compiler consumes a trusted graph and fails closed if any observed edge cannot be mapped precisely, if an unobserved source site runs later, or if a trusted edge is left unused. See Runtime Source Discovery and Runtime Graph Compiler for the detailed artifact formats, trust checks, and safety model.

Commands

modash <entrypoint> <output> [--mode context|executable] [--source-supplement FILE]
modash trace <entrypoint> [--cwd DIR] [--env KEY=VALUE] [--output FILE] [--timeout SECONDS] [--] [args...]
modash graph <entrypoint> --from-observation observation.json --output runtime-graph.json [--report graph-review.txt]
modash supplement <entrypoint> (--from-observation observation.json [--report report.json] | --from-graph runtime-graph.json) --output source-supplement.json
modash compile-observed <entrypoint> <output> --from-graph runtime-graph.json
modash observe-compile <entrypoint> <output> --reviewed-graph-out runtime-graph.json [--observation-out observation.json] [--report graph-review.txt] [--cwd DIR] [--env KEY=VALUE] [--timeout SECONDS] [--] [args...]

Useful options:

  • --mode executable: write runnable output for the supported subset.
  • --source-supplement FILE: provide exact values for runtime-dynamic source sites.
  • trace --cwd DIR: run the target script from a specific directory.
  • trace --env KEY=VALUE: add an environment overlay for the traced run. Source-relevant inherited environment values are replay-checked when observed; use --env for values you want to make explicit in review artifacts.
  • trace --timeout SECONDS: bound target execution. Default: 30.
  • graph --from-observation FILE: build a trusted source graph from a trace observation.
  • graph --report FILE: choose the human-readable graph review report path.
  • compile-observed --from-graph FILE: compile executable output with the trusted runtime graph compiler.
  • observe-compile --reviewed-graph-out FILE: explicitly run tracing, write review artifacts, and compile executable output from the newly observed graph.
  • supplement --report FILE: choose where to write the review report.

Development

Run the local verification suite:

python -m unittest discover -s . -p 'test_*.py'
python -m py_compile $(find methods -name '*.py' -print) $(find test -name '*.py' -print) modash.py
git diff --check

Optional packaging checks:

python -m build --sdist --wheel --outdir dist
python -m twine check dist/*
MODASH_PACKAGING_SMOKE=1 python -m unittest test.test_packaging_smoke -v

Design notes live in docs.

License

This project is licensed under the Apache 2.0 License. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

modash-0.7.0.tar.gz (192.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

modash-0.7.0-py3-none-any.whl (225.7 kB view details)

Uploaded Python 3

File details

Details for the file modash-0.7.0.tar.gz.

File metadata

  • Download URL: modash-0.7.0.tar.gz
  • Upload date:
  • Size: 192.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for modash-0.7.0.tar.gz
Algorithm Hash digest
SHA256 bacc37ada69d9c8afea89e11d817b7d401ba5473bdd602b4140c7c4e6119f7b4
MD5 cf374c72d6bf10053d77b75055468774
BLAKE2b-256 d746138ec32ad645cec70e7fb7f55f0d7b374a2abade37eb3adfb405c923d893

See more details on using hashes here.

Provenance

The following attestation bundles were made for modash-0.7.0.tar.gz:

Publisher: publish-pypi.yml on nmehran/modash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file modash-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: modash-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 225.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for modash-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cd9883850e3c5ad70fc0d0d88cb3cb2d6667f446026951ee76374a3faa471e56
MD5 075bbf629fd7f5ad74ceb9d8c775c347
BLAKE2b-256 bfea503ab948e12badbc70e4f447737956420d2a8d2b45dc4816c569be9cc6a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for modash-0.7.0-py3-none-any.whl:

Publisher: publish-pypi.yml on nmehran/modash

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page