5 lines
214 B
Bash
Executable File
5 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This command will combine the factory keypairs and the user generated keypairs
|
|
for key_type in KEK db dbx; do cat factory_config/${key_type}.esl custom_config/${key_type}.esl > ${key_type}.esl; done
|