Skip to content

mahmoudnasser1561/alx-low_level_programming

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

this module is about low level programming #!/bin/bash

Simply a wrapper script to keep you from having to use betty-style

and betty-doc separately on every item.

Originally by Tim Britton (@wintermanc3r), multiargument added by

Larry Madeo (@hillmonkey)

BIN_PATH="/usr/local/bin" BETTY_STYLE="betty-style" BETTY_DOC="betty-doc"

if [ "$#" = "0" ]; then echo "No arguments passed." exit 1 fi

for argument in "$@" ; do echo -e "\n========== $argument ==========" ${BIN_PATH}/${BETTY_STYLE} "$argument" ${BIN_PATH}/${BETTY_DOC} "$argument" done

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages