From 3409aa0949fa0038dcf581b733dee5e0b548f894 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Sat, 24 Oct 2020 12:43:55 +0200 Subject: [PATCH] Enforce conventions --- _gtfobins/ghc.md | 4 ++-- _gtfobins/ghci.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_gtfobins/ghc.md b/_gtfobins/ghc.md index 4ebb590..c2a4807 100644 --- a/_gtfobins/ghc.md +++ b/_gtfobins/ghc.md @@ -1,7 +1,7 @@ --- functions: shell: - - code: ghc -e 'System.Process.callCommand "/bin/bash"' + - code: ghc -e 'System.Process.callCommand "/bin/sh"' sudo: - - code: sudo ghc -e 'System.Process.callCommand "/bin/bash"' + - code: sudo ghc -e 'System.Process.callCommand "/bin/sh"' --- diff --git a/_gtfobins/ghci.md b/_gtfobins/ghci.md index 330ce0e..cc1f34a 100644 --- a/_gtfobins/ghci.md +++ b/_gtfobins/ghci.md @@ -3,9 +3,9 @@ functions: shell: - code: | ghci - Prelude> System.Process.callCommand "/bin/bash" + System.Process.callCommand "/bin/sh" sudo: - code: | sudo ghci - Prelude> System.Process.callCommand "/bin/bash" + System.Process.callCommand "/bin/sh" ---