├── .gitignore ├── .swift-version ├── BinUtils.podspec ├── BinUtils.xcodeproj ├── BinUtilsTests_Info.plist ├── BinUtils_Info.plist ├── Configs │ └── Project.xcconfig ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── BinUtils.xcscheme │ └── xcschememanagement.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── BinUtils │ └── BinUtils.swift └── Tests ├── BinUtilsTests └── BinUtilsTests.swift └── LinuxMain.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.2 2 | -------------------------------------------------------------------------------- /BinUtils.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.podspec -------------------------------------------------------------------------------- /BinUtils.xcodeproj/BinUtilsTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.xcodeproj/BinUtilsTests_Info.plist -------------------------------------------------------------------------------- /BinUtils.xcodeproj/BinUtils_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.xcodeproj/BinUtils_Info.plist -------------------------------------------------------------------------------- /BinUtils.xcodeproj/Configs/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.xcodeproj/Configs/Project.xcconfig -------------------------------------------------------------------------------- /BinUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BinUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BinUtils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /BinUtils.xcodeproj/xcshareddata/xcschemes/BinUtils.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.xcodeproj/xcshareddata/xcschemes/BinUtils.xcscheme -------------------------------------------------------------------------------- /BinUtils.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/BinUtils.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/README.md -------------------------------------------------------------------------------- /Sources/BinUtils/BinUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/Sources/BinUtils/BinUtils.swift -------------------------------------------------------------------------------- /Tests/BinUtilsTests/BinUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/Tests/BinUtilsTests/BinUtilsTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nst/BinUtils/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------