From 88671eb3960136da4eb434a48e74b2b8f9ca82b8 Mon Sep 17 00:00:00 2001
From: davidovski <david@davidovski.xyz>
Date: Mon, 3 Oct 2022 18:59:45 +0100
Subject: Added \

---
 src/pci_passthrough.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/pci_passthrough.md b/src/pci_passthrough.md
index 4bf3a65..54bea08 100644
--- a/src/pci_passthrough.md
+++ b/src/pci_passthrough.md
@@ -26,7 +26,7 @@ Once you have enabled IOMMU, you will need to ensure that your PCI slot can actu
 To list IOMMU groups, you may use this script from the [archwiki](https://wiki.archlinux.org/title/PCI_passthrough_via_OVMF#Ensuring_that_the_groups_are_valid)
 
 ```
-#!/bin/bash
+\#!/bin/bash
 shopt -s nullglob
 for g in $(find /sys/kernel/iommu_groups/* -maxdepth 0 -type d | sort -V); do
     echo "IOMMU Group ${g##*/}:"
@@ -96,7 +96,7 @@ In this guide I will be using qemu from the command line. I feel as if this is t
 Here is a script that use a to run a linux virtual machine, if you want to copy it blindly and not understand it, then thats alright, but I will include a description for each argument and why its used.
 
 ```
-#!/bin/sh
+\#!/bin/sh
 
 ISO="/path/to/your/installer/iso"
 ROOT="/path/to/your/virtual/disk"
-- 
cgit v1.2.1