Add server and client scripts for DaemonMode.jl

This commit is contained in:
gg 2023-09-12 05:52:13 -07:00
parent 7b705cf466
commit 2a12ee70bd
2 changed files with 4 additions and 0 deletions

2
bin/julia-client Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
exec julia --startup-file=no -e "using DaemonMode; runargs()" $@

2
bin/julia-server Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
julia --project --startup-file=no -e 'using DaemonMode; serve()'