9 lines
147 B
Bash
9 lines
147 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present - Fewtarius
|
|
|
|
. /etc/profile
|
|
|
|
ARG=${1//[\\]/}
|
|
echo "[${ARG}]"
|
|
minivmac
|