Skip to content

Instantly share code, notes, and snippets.

View franciscolopezsancho's full-sized avatar

Francisco Lopez-Sancho franciscolopezsancho

View GitHub Profile
@franciscolopezsancho
franciscolopezsancho / f2j.sh
Created April 8, 2016 09:37 — forked from kylekellogg/f2j.sh
Cucumber (Gherkin) feature file to JIRA comment formatter. Takes a path to a single .feature file and will output the JIRA comment-friendly formatted version in the terminal.
#!/usr/bin/env bash
# Ensure only one file at a time
if [[ $# -ne 1 ]]
then
echo ""
echo "Usage $0 path/to/file.feature"
echo ""
exit 1
fi