/art-ascii

A project to write very simple art ascii text in command line

Primary LanguageC

Contributors Forks Stargazers Issues MIT License


art-ascii

A cli program to generate ascci art from text
Explore the docs »

Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Prerequisites
  4. Usage

About The Project

A cli program to generate ascci art from text

(back to top)

Getting Started

  1. Clone the project
  git clone https://github.com/aymerickmichelet/art_ascii.git
  1. Go to the project directory
  cd art_ascii
  1. Compile the program
  ./compiler.sh

Prerequisites

macOS

Avec Homebrew

  1. Install Homebrew :
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  2. Install GCC :
    brew install gcc

Avec Xcode

  1. Install Xcode from l'App Store.
  2. Install command line tools :
xcode-select --install

Windows

Avec MinGW

  1. Download MinGW from mingw.org.
  2. Follow installation instruction.
  3. Add C:\MinGW\bin to the environment variable PATH.

Avec MSYS2

  1. Download MSYS2 from msys2.org.
  2. Follow installation instruction.
  3. Open the console MSYS2 and install GCC :
pacman -Syu
pacman -S mingw-w64-x86_64-gcc
  1. Add C:\msys64\mingw64\bin to the environment variable PATH.

Linux

Debian/Ubuntu

  1. Open Terminal and install development tools :
sudo apt update
sudo apt install build-essential

Fedora

  1. Open Terminal and install development tools :
sudo dnf groupinstall "Development Tools"

Arch Linux

  1. Open Terminal and install development tools :
sudo pacman -S base-devel

Usage

  1. Compile the program (getting started)

  2. Run the program

  ./art_ascii <text>

(back to top)