build script for bash programs
Go to file
2017-04-30 03:00:51 +02:00
dist add backup last build 2017-04-30 03:00:51 +02:00
src add backup last build 2017-04-30 03:00:51 +02:00
README.md initial commit 2017-04-27 00:48:05 +02:00

bes-build

bes-build is a bash script to build bash program.
the building process simply consist to append shell script files from your src/ project directory into a single dist/project executable file

Install

wget https://raw.githubusercontent.com/meta-tech/bes-build/master/dist/bes-build
chmod +x bes-build
sudo mv bes-build /usr/local/bin

Usage

# change directory to your project
cd /home/repo/meta-tech/bes
bes-build
# you can now execute program with : 
./dist/bes

Requirements

using bes-build script require you to conform to these following rules :

  • respect this directory structure :

    project/
       |
       |--- src/
             |
             |--- file1.sh
             |--- file2.sh
             |--- file3.sh
  • each src/ shell file require a shebang on first line (#!/bin/bash)