You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> ;ls /Users/dhlin/.julia
BinDeps DataStructures IJulia NumericExtensions REQUIRE
CUDA Devectorize JSON Optim Regression
Cairo Distance METADATA Options Stats
Calculus Distributions MLBase PyCall URIParser
Clustering Graphs MixtureModels PyPlot ZMQ
Color Homebrew Nettle REPLCompletions
julia> ;ls ~/.julia
ls:~/.julia: No such file or directory
ERROR: failed process:Process(`ls ~/.julia`, ProcessExited(1)) [1]
in error at error.jl:22in pipeline_error at process.jl:447in run at process.jl:424in repl_cmd at client.jl:60
Clearly, it failed to expand ~ to my home directory, while this works fine in a real bash shell.
It also failed to expand *, as
julia> ;ls julia
CONTRIBUTING.md Makefile VERSION deps src
LICENSE.md NEWS.md Windows.inc doc test
Make.inc README.md base examples ui
Make.user README.windows.md contrib julia usr
julia> ;ls j*
ls: j*: No such file or directory
ERROR: failed process:Process(`ls j*`, ProcessExited(1)) [1]
in error at error.jl:22in pipeline_error at process.jl:447in run at process.jl:424in repl_cmd at client.jl:60
The text was updated successfully, but these errors were encountered:
Here is what I get:
Clearly, it failed to expand
~
to my home directory, while this works fine in a real bash shell.It also failed to expand
*
, asThe text was updated successfully, but these errors were encountered: