copySshKeyCommand method
Implementation
@override
List<String> copySshKeyCommand({
required String filePath,
required bool ipv6,
required String targetDevice,
}) {
return commandRunner([
'type $filePath |',
'ssh $targetDevice "cat >> .ssh/authorized_keys"'
]);
}