mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 06:30:10 -06:00
13 lines
172 B
Bash
Executable File
13 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
if [ $# -eq 0 ]; then
|
|
echo "usage: mdcmd <command> [arg ... ]"
|
|
exit 1;
|
|
fi;
|
|
|
|
if [ $1 == "status" ]; then
|
|
cat /proc/mdstat
|
|
else
|
|
echo $* >/proc/mdcmd
|
|
fi
|