[BACK]Return to bullet-points CVS log [TXT][DIR] Up to [contributed] / brogue-ce / tools

File: [contributed] / brogue-ce / tools / bullet-points (download)

Revision 1.1.1.1 (vendor branch), Thu May 27 20:31:43 2021 UTC (2 years, 11 months ago) by rubenllorente
Branch: tmewett, MAIN
CVS Tags: start, HEAD
Changes since 1.1: +0 -0 lines

Initial Import from release 1.9.3

#!/bin/bash
set -euo pipefail

for file in "$@"; do
    echo '-'
    sed -e 's/^/  /' < $file
done