diff options
author | Ben Sima <ben@bsima.me> | 2024-12-21 15:13:05 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-12-21 14:13:05 -0500 |
commit | 70543fc1ef9733fb754cecda96805349cb36de32 (patch) | |
tree | 5ef26f4be19dac1f5272799be0c7abece9f83e28 /Biz | |
parent | 32d31ae8d1ef5d5aeb03a7fe7e6a294e14905505 (diff) |
Add shebangs and x bit to executables
With run.sh, we can build and run the file in one go. This means we can also use
it as an interpreter in a shebang line and properly use the Unix executable bit.
This is pretty cool and gives a few advantages: running any executable file is
just `exec file.hs` or even `./file.hs`, finding all executables is `fd -t x`,
you don't need to specify or know an `out` name to run something, execution of a
program is standardized.
There is a hack to get this to work. In C and Common Lisp, `#!` is illegal
syntax, so I had to use shell syntax to invoke run.sh, call it on the current
file, and then exit the shell script. Meanwhile, run.sh takes the file and evals
the whole thing, building and running it. As long as either `//` or `;` is a
comment character in the target language, then this works. Maybe a better thing
to do would be to pre-process the file and remove the `#!` before passing it to
the C compiler, like [ryanmjacobs/c][1] and [tcc][2]? However this won't work in
Lisp because then I can't just load the file directly into the repl, so maybe
the comment hack needs to stay.
[1]: https://github.com/ryanmjacobs/c/tree/master
[2]: https://repo.or.cz/tinycc.git/blob/HEAD:/tccrun.c
Diffstat (limited to 'Biz')
-rwxr-xr-x[-rw-r--r--] | Biz/Dragons.hs | 1 | ||||
-rwxr-xr-x[-rw-r--r--] | Biz/Dragons/Analysis.hs | 1 | ||||
-rwxr-xr-x[-rw-r--r--] | Biz/Dragons/main.py | 1 | ||||
-rwxr-xr-x[-rw-r--r--] | Biz/Que/Client.py | 1 | ||||
-rwxr-xr-x[-rw-r--r--] | Biz/Que/Host.hs | 1 | ||||
-rwxr-xr-x[-rw-r--r--] | Biz/Que/Site.hs | 1 | ||||
-rwxr-xr-x[-rw-r--r--] | Biz/Storybook.py | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/Biz/Dragons.hs b/Biz/Dragons.hs index 3379732..7ba7fa0 100644..100755 --- a/Biz/Dragons.hs +++ b/Biz/Dragons.hs @@ -1,3 +1,4 @@ +#!/usr/bin/env run.sh {-# LANGUAGE AllowAmbiguousTypes #-} {-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveAnyClass #-} diff --git a/Biz/Dragons/Analysis.hs b/Biz/Dragons/Analysis.hs index 64b2906..ef255fe 100644..100755 --- a/Biz/Dragons/Analysis.hs +++ b/Biz/Dragons/Analysis.hs @@ -1,3 +1,4 @@ +#!/usr/bin/env run.sh {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE LambdaCase #-} diff --git a/Biz/Dragons/main.py b/Biz/Dragons/main.py index e9df03f..de84ff5 100644..100755 --- a/Biz/Dragons/main.py +++ b/Biz/Dragons/main.py @@ -1,3 +1,4 @@ +#!/usr/bin/env run.sh # : out dragons.py """Analyze developer allocation across a codebase.""" diff --git a/Biz/Que/Client.py b/Biz/Que/Client.py index ccbb980..7b28e27 100644..100755 --- a/Biz/Que/Client.py +++ b/Biz/Que/Client.py @@ -1,3 +1,4 @@ +#!/usr/bin/env run.sh # : out que # ruff: noqa: PERF203 """simple client for que.run.""" diff --git a/Biz/Que/Host.hs b/Biz/Que/Host.hs index a908d5b..834ce0e 100644..100755 --- a/Biz/Que/Host.hs +++ b/Biz/Que/Host.hs @@ -1,3 +1,4 @@ +#!/usr/bin/env run.sh {-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleContexts #-} diff --git a/Biz/Que/Site.hs b/Biz/Que/Site.hs index f4e4a9c..838ae52 100644..100755 --- a/Biz/Que/Site.hs +++ b/Biz/Que/Site.hs @@ -1,3 +1,4 @@ +#!/usr/bin/env run.sh {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE QuasiQuotes #-} diff --git a/Biz/Storybook.py b/Biz/Storybook.py index c29d9f5..0c96ee7 100644..100755 --- a/Biz/Storybook.py +++ b/Biz/Storybook.py @@ -1,3 +1,4 @@ +#!/usr/bin/env run.sh """Storybook Generator Application. This application generates a children's storybook using the OpenAI API. |