Core.Command
and Core.Filename
will rename in Core, but the parts that depend on Unix have been moved into new libraries, command_unix
and filename_unix
respectively.
For Command
that mostly means you now have to use Command_unix.run
instead of Command.run
.
For Filename
, that means things like realpath
and open_temp_file
now live in Filename_unix
, but things that are essentially string manipulation get to stay in Core.