summaryrefslogtreecommitdiff
path: root/shell-scripts/fawx
blob: d7247bc2a89b8a79ba631f55b00a022b5aca66df (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
# Removes ansi escape codes from ansible outputs
error () {
    echo "$1"
    exit 1
}
command -v awx || error "awx cli not found"
awx "$@" | filter-ansi