class EL_DESKTOP_ENVIRONMENT_IMP
Unix implementation of EL_DESKTOP_ENVIRONMENT_I interface
note
description: "Unix implementation of [$source EL_DESKTOP_ENVIRONMENT_I] interface"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2023-11-05 14:55:33 GMT (Sunday 5th November 2023)"
revision: "9"
deferred class
EL_DESKTOP_ENVIRONMENT_IMP
inherit
EL_DESKTOP_ENVIRONMENT_I
redefine
command_path
end
EL_UNIX_IMPLEMENTATION
feature -- Access
command_path: FILE_PATH
local
sh_path: FILE_PATH
do
Result := Precursor
sh_path := Result.twin
sh_path.add_extension ("sh")
if sh_path.exists then
Result := sh_path
end
end
end