mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 13:19:07 -07:00
12 lines
171 B
Bash
Executable File
12 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -u
|
|
|
|
CHEF_FILE=${HOME}/tools/cyberchef/cyberchef.html
|
|
|
|
if [ ! -f ${CHEF_FILE} ] ; then
|
|
${HOME}/bin/install_tool cyberchef
|
|
fi
|
|
|
|
exec xdg-open ${CHEF_FILE}
|