9 lines
169 B
Bash
9 lines
169 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
. /etc/profile
|
|
|
|
ARG=${1//[\\]/}
|
|
echo "[${ARG}]"
|
|
minivmac
|