From 864b5ee40b4918dc700b672fdffc5b503a77eb20 Mon Sep 17 00:00:00 2001 From: pierlucg-xs <67608210+pierlucg-xs@users.noreply.github.com> Date: Tue, 23 Feb 2021 11:14:14 -0500 Subject: [PATCH] docs: add the shebang line to the .vsh chmod-able example script (#8926) --- doc/docs.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/docs.md b/doc/docs.md index fa36ddd77b..6bc011d329 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -3890,6 +3890,7 @@ module global (so that you can use `mkdir()` instead of `os.mkdir()`, for exampl An example `deploy.vsh`: ```v wip +#!/usr/bin/env -S v run // The shebang above associates the file to V on Unix-like systems, // so it can be run just by specifying the path to the file // once it's made executable using `chmod +x`.