You've already forked dts-scripts
mirror of
https://github.com/Dasharo/dts-scripts.git
synced 2026-03-06 15:01:22 -08:00
22 lines
406 B
Bash
Executable File
22 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Function to print usage
|
|
usage() {
|
|
echo "Usage: $0 info"
|
|
exit 1
|
|
}
|
|
|
|
# Check if the first argument is 'info'
|
|
if [[ "$1" != "info" ]]; then
|
|
usage
|
|
fi
|
|
|
|
# Mock info command output
|
|
echo "Dasharo EC Tool Mock - Info Command"
|
|
echo "-----------------------------------"
|
|
echo "board: novacustom/nv4x_adl"
|
|
echo "version: 2023-03-10_c0fe220"
|
|
echo "-----------------------------------"
|
|
|
|
exit 0
|