diff --git a/commands/owner/exec.js b/commands/owner/exec.js
index 91cb2753..c483d760 100644
--- a/commands/owner/exec.js
+++ b/commands/owner/exec.js
@@ -28,8 +28,8 @@ class execCommand extends Command {
 			const { stdout, stderr } = await exec(args.exec).catch(err => {
 				return message.channel.send(`Oh no, an error has occured\n${err}`);
 			});
-			message.channel.send(`stdout: ${stdout}`, { split: true });
-			message.channel.send(`stderr: ${stderr}`, { split: true });
+			message.channel.send(`stdout: \n\`\`\`${stdout}\`\`\``, { split: true });
+			message.channel.send(`stderr: \n\`\`\`${stderr}\`\`\``, { split: true });
 		}
 		return update();
 	}