8 lines
104 B
Bash
Executable File
8 lines
104 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f toaruos.iso ]; then
|
|
echo "cdrom tags"
|
|
else
|
|
echo "system tags userspace"
|
|
fi
|