Skip to content

Commit

Permalink
Rename owner/group matching operations
Browse files Browse the repository at this point in the history
  • Loading branch information
harendra-kumar committed Jun 13, 2022
1 parent d5f58e6 commit 3d30857
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Streamly/Coreutils/FileTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ module Streamly.Coreutils.FileTest
, isSticky
, isSetUID
, isSetGID
, euidIsUs
, egidIsUs
, isOwnerEUID
, isGroupEGID

-- ** Comparing with other files
, isNewerThan
Expand Down Expand Up @@ -301,17 +301,17 @@ isExecutable = undefined
-- Like coreutil @test -O file@
--
-- /Unimplemented/
euidIsUs :: FileTest
euidIsUs = undefined
isOwnerEUID :: FileTest
isOwnerEUID = undefined

-- | True if file exists and its group matches the effective
-- group id of this process.
--
-- Like coreutil @test -G file@
--
-- /Unimplemented/
egidIsUs :: FileTest
egidIsUs = undefined
isGroupEGID :: FileTest
isGroupEGID = undefined

------------------------------
-- Comparing with other files
Expand Down

0 comments on commit 3d30857

Please sign in to comment.