Skip to content
Snippets Groups Projects

Adding a script to open a web browser with StepSecurity API to run an analysis open it

Merged Francisco Perez requested to merge fcojperez/scripts:main into main
1 file
+ 12
0
Compare changes
  • Side-by-side
  • Inline
+ 12
0
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
STEPSECURITY_API=https://app.stepsecurity.io/securerepo?repo
main(){
xdg-open ${STEPSECURITY_API}=${@} > /dev/null 2>&1
}
main ${@}
\ No newline at end of file
Loading