Select Git revision
-
Md. Alim Ul Karim authored
hotfix/v0.6.2 : "Added integrated tests" "Fix chmod compare and verify issues" "new default methods or stirngs" "GetPathExistStat" hotfix/v0.6.2 : "Added integrated tests" "Fix chmod compare and verify issues" "new default methods or stirngs" "GetPathExistStat" ## Analysis  ## All Passing Tests  See merge request !52
Md. Alim Ul Karim authoredhotfix/v0.6.2 : "Added integrated tests" "Fix chmod compare and verify issues" "new default methods or stirngs" "GetPathExistStat" hotfix/v0.6.2 : "Added integrated tests" "Fix chmod compare and verify issues" "new default methods or stirngs" "GetPathExistStat" ## Analysis  ## All Passing Tests  See merge request !52
ExpandRwxFullStringToOwnerGroupOtherByFixingFirst.go 460 B
package chmodins
// ExpandRwxFullStringToOwnerGroupOtherByFixingFirst can be
//
// - "-rwx" will be "-rwx******"
// - "-rwxr-x" will be "-rwxr-x***"
// - "-rwxr-x" will be "-rwxr-x***"
func ExpandRwxFullStringToOwnerGroupOtherByFixingFirst(
rwxPartialRestWildcard string,
) (*RwxOwnerGroupOther, error) {
fullRwxWithWildcard := FixRwxFullStringWithWildcards(rwxPartialRestWildcard)
return ExpandRwxFullStringToOwnerGroupOther(
fullRwxWithWildcard)
}