From 2024a0dacab898e0a83a859553913b8dd40391c3 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Wed, 11 Sep 2024 23:10:34 +0200 Subject: [PATCH] Remove: duplicated title for shebang post --- content/blog/2022-05-25-shebang-#!-tutorial-in-linux.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/content/blog/2022-05-25-shebang-#!-tutorial-in-linux.md b/content/blog/2022-05-25-shebang-#!-tutorial-in-linux.md index 5c1e195..0c87af8 100644 --- a/content/blog/2022-05-25-shebang-#!-tutorial-in-linux.md +++ b/content/blog/2022-05-25-shebang-#!-tutorial-in-linux.md @@ -1,21 +1,15 @@ --- title: "Shebang #! Tutorial In Linux" description: "" - date: 2022-05-25T12:50:05.057Z -lastmod: 2023-01-03T16:39:00.682Z - +lastmod: 2024-09-11T21:10:00.957Z image: /images/blog/shebang.jpg - draft: false - tags: - Linux - Cheat-Sheet - slug: shebang-tutorial-linux --- -# Shebang #! Tutorial In Linux In computing and Linux the shebang is a character sequence that consists of `#` and `!`. Simply the shebang is expressed as `#!`. The shebang is also called sha-bang, hashbang, pound-bang, and hash-pling. The shebang is used to specify an interpreter for script files. Linux is popular with its script files and scripting languages like Bash, ZSH, Python, Perl, PHP, etc. The shebang is used to specify the interpreter type and location. When a script file is called the first line contains the shebang with the interpreter path.