You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
194 B
Bash

#!/usr/bin/bash
if [[ -z "$1" ]]; then
mapfile cmds < /dev/stdin
else
mapfile cmds < "$1"
fi
for cmd in "${cmds[@]}"; do
[[ $cmd =~ ^x_[_a-zA-Z0-9]* ]] && echo "${BASH_REMATCH[0]}"
done