diff --git a/basis/io/standard-paths/standard-paths.factor b/basis/io/standard-paths/standard-paths.factor index 5aac58a1fe..d552af0657 100644 --- a/basis/io/standard-paths/standard-paths.factor +++ b/basis/io/standard-paths/standard-paths.factor @@ -10,6 +10,11 @@ HOOK: find-in-path* os ( string -- path/f ) HOOK: find-in-applications os ( directories filename -- path ) +HOOK: find-in-standard-login-path* os ( string -- path/f ) + +M: object find-in-standard-login-path* + find-in-path* ; + : find-in-path ( string -- path/f ) [ f ] [ [ find-in-path* ] keep over @@ -19,6 +24,12 @@ HOOK: find-in-applications os ( directories filename -- path ) : ?find-in-path ( string -- path/string ) [ find-in-path ] [ or ] bi ; +: find-in-standard-login-path ( string -- path/f ) + [ f ] [ + [ find-in-standard-login-path* ] keep over + [ append-path ] [ 2drop f ] if + ] if-empty ; + { { [ os windows? ] [ "io.standard-paths.windows" ] } { [ os macosx? ] [ "io.standard-paths.macosx" ] } diff --git a/basis/io/standard-paths/unix/unix.factor b/basis/io/standard-paths/unix/unix.factor index eaed43fc4c..bc37783b33 100644 --- a/basis/io/standard-paths/unix/unix.factor +++ b/basis/io/standard-paths/unix/unix.factor @@ -1,10 +1,16 @@ ! Copyright (C) 2011 Doug Coleman. ! See http://factorcode.org/license.txt for BSD license. -USING: environment fry io.files io.pathnames io.standard-paths -kernel sequences splitting system ; +USING: environment fry io io.encodings.utf8 io.files io.launcher +io.pathnames io.standard-paths kernel sequences splitting system ; IN: io.standard-paths.unix M: unix find-in-path* [ "PATH" os-env ":" split ] dip '[ _ append-path exists? ] find nip ; +: standard-login-paths ( -- strings ) + { "bash" "-l" "-c" "echo $PATH" } + utf8 stream-contents ":" split ; + +M: unix find-in-standard-login-path* + [ standard-login-paths ] dip '[ _ append-path exists? ] find nip ;