GHCi: how to load another file than .ghci ?

Hello, Cafe! If I have typical .ghci file, but it's called somefile.txt, how to call "stack exec ghci" to load and exec this "somefile.txt" (as it does with ".ghci" usual)? === Best regards, Paul

Hello Paul,
You can supply arguments for commands run by stack like this: stack exec
CMD -- ARGS
In your case the argument you're interested in is -ghci-script. So the
answer is
stack exec ghci -- -ghci-script path/to/somefile.txt
--
Best wishes, Artem
On Wed, 20 Jun 2018 at 14:44 PY
Hello, Cafe! If I have typical .ghci file, but it's called somefile.txt, how to call "stack exec ghci" to load and exec this "somefile.txt" (as it does with ".ghci" usual)?
===
Best regards, Paul
_______________________________________________ Haskell-Cafe mailing list To (un)subscribe, modify options or view archives go to: http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe Only members subscribed via the mailman list are allowed to post.
participants (2)
-
Artem Pelenitsyn
-
PY