Add regex command implementation

This commit is contained in:
Rogee
2025-10-31 10:12:02 +08:00
parent a0d7084c28
commit d436970848
55 changed files with 2115 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
package integration
import "os"
func fileExistsTestHelper(path string) bool {
_, err := os.Stat(path)
return err == nil
}