From 2db20e22cbde66ec0f4783b12fb8789cd3911afb Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Sun, 4 Apr 2021 19:46:42 -0400 Subject: dzaima/BQN no longer requires -f flag to run on a file --- docs/running.html | 2 +- running.md | 2 +- test/README.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/running.html b/docs/running.html index 48c05f6e..212dcd55 100644 --- a/docs/running.html +++ b/docs/running.html @@ -17,7 +17,7 @@

You can run dzref from ordinary dzaima/BQN using the •Import command; see for example wcshim.bqn. For testing, it is run as a Unix script, in which case it depends on an executable dbqn that runs dzaima/BQN on a file argument. I use the following script, using the path to a clone of dzaima/BQN for the jar file.

#! /bin/bash
 
-java -jar /path/to/dzaima/BQN/BQN.jar -f "$@"
+java -jar /path/to/dzaima/BQN/BQN.jar "$@"
 

The left argument for •Import or the shell arguments can contain up to two arguments for the script. The first is a file to run, and the second is BQN code to be run after it.

BQN2NGN

diff --git a/running.md b/running.md index d477f298..3cd834a8 100644 --- a/running.md +++ b/running.md @@ -24,7 +24,7 @@ You can run `dzref` from ordinary dzaima/BQN using the `•Import` command; see #! /bin/bash - java -jar /path/to/dzaima/BQN/BQN.jar -f "$@" + java -jar /path/to/dzaima/BQN/BQN.jar "$@" The left argument for `•Import` or the shell arguments can contain up to two arguments for the script. The first is a file to run, and the second is BQN code to be run after it. diff --git a/test/README.txt b/test/README.txt index b61cf09d..c5913a4d 100644 --- a/test/README.txt +++ b/test/README.txt @@ -23,4 +23,4 @@ your path. #! /bin/bash -java -jar /path/to/dzaima/BQN/BQN.jar -f "$@" +java -jar /path/to/dzaima/BQN/BQN.jar "$@" -- cgit v1.2.3