8 lines
120 B
Bash
8 lines
120 B
Bash
#!/bin/bash
|
|
|
|
# Get command to execute from filename
|
|
COMMAND=$(basename "$0")
|
|
|
|
# Send command to ectl
|
|
ectl "$COMMAND" $@
|