HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //snap/chromium/current/snap/command-chain/run
#!/bin/bash

if [ -z "$1" ]; then
  echo "run <command>"
  exit 1
fi

if [ -z "${SNAP}" ]; then
  echo "Not running inside a snap context: SNAP not declared"
  exit
fi


if [ ! -f "$1" ]; then
  echo "Content snap command-chain for $1 not found: ensure slot is connected"
  exit
fi

# emulate "exec $@" using "source"
# have to disable "unused variables" because checkshell doesn't know that $BASH_ARGV0 is $0
# shellcheck disable=SC2034  # Unused variables left for readability
BASH_ARGV0=$1
shift
# shellcheck source=/dev/null
source "$0"