Skip to content

Commit 85cda6a

Browse files
committed
When giving - as the program, read program from standard in.
1 parent ae336ab commit 85cda6a

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

NEWS.md

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Command-line option changes
4545
* New option `--strip-ir` to remove the compiler's IR (intermediate representation) of source
4646
code when building a system image. The resulting image will only work if `--compile=all` is
4747
used, or if all needed code is precompiled ([#42925]).
48+
* When the program file is `-` the code to be executed is read from standard in ([#?]).
4849

4950
Multi-threading changes
5051
-----------------------

base/client.jl

+5-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,11 @@ function exec_options(opts)
301301
exit_on_sigint(true)
302302
end
303303
try
304-
include(Main, PROGRAM_FILE)
304+
if PROGRAM_FILE == "-"
305+
include_string(Main, read(stdin, String), "stdin")
306+
else
307+
include(Main, PROGRAM_FILE)
308+
end
305309
catch
306310
invokelatest(display_error, scrub_repl_backtrace(current_exceptions()))
307311
if !is_interactive::Bool

test/cmdlineargs.jl

+19
Original file line numberDiff line numberDiff line change
@@ -766,3 +766,22 @@ end
766766

767767
# issue #39259, shadowing `ARGS`
768768
@test success(`$(Base.julia_cmd()) --startup-file=no -e 'ARGS=1'`)
769+
770+
@testset "- as program file reads from stdin" begin
771+
for args in (`- foo bar`, `-- - foo bar`)
772+
cmd = `$(Base.julia_cmd()) --startup-file=no $(args)`
773+
io = IOBuffer()
774+
open(cmd, io; write=true) do proc
775+
write(proc, """
776+
println(PROGRAM_FILE)
777+
println(@__FILE__)
778+
foreach(println, ARGS)
779+
""")
780+
end
781+
lines = collect(eachline(seekstart(io)))
782+
@test lines[1] == "-"
783+
@test lines[2] == "stdin"
784+
@test lines[3] == "foo"
785+
@test lines[4] == "bar"
786+
end
787+
end

0 commit comments

Comments
 (0)