10 lines
117 B
Bash
Executable File
10 lines
117 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" = "0" ]
|
|
then
|
|
apg -a 0 -M SNCL -x 50 -m 50 -n 24
|
|
else
|
|
apg -a 1 -M SNCL -x 50 -m 50 -n 24
|
|
fi
|
|
|