mirror of
https://github.com/g3rv4/FakeRelay.git
synced 2025-02-18 00:00:47 +01:00
8 lines
67 B
Bash
8 lines
67 B
Bash
|
#!/bin/ash
|
||
|
|
||
|
if [ "$1" = "web" ]; then
|
||
|
web
|
||
|
else
|
||
|
cli "$@"
|
||
|
fi
|