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