a14439549f
Bashate is a style checker program for bash scripts. This addition improves the quality of the current bash scripts and ensures that any future change will follow the same standards. Change-Id: Ia346f77632d4ac7beb288fa3aacea221d7969c87
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# preserve old behavior of using an arg as a regex when '--' is not present
|
|
case $@ in
|
|
(*--*) ostestr $@;;
|
|
('') ostestr;;
|
|
(*) ostestr --regex "$@"
|
|
esac
|