├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── CI.yaml │ ├── devskim.yml │ ├── powershell.yml │ ├── stale.yml │ └── un-stale-on-comment.yml ├── .gitignore ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── PSItems ├── PSItems.psd1 ├── PSItems.psm1 ├── Private │ └── .gitkeep └── Public │ ├── Find-Item.ps1 │ ├── Find-ItemContent.ps1 │ └── Get-ItemSize.ps1 ├── README.md ├── docs └── en-US │ ├── Find-Item.md │ ├── Find-ItemContent.md │ ├── Get-ItemSize.md │ └── PSItems-help.xml ├── psakeFile.ps1 ├── requirements.psd1 ├── res ├── benchmarks │ └── testing-and-speed.md ├── guides │ └── Linux-find-compatibility.md └── img │ ├── logo.png │ ├── logo.xcf │ └── psitems-logo.png └── tests ├── Help.tests.ps1 ├── Manifest.tests.ps1 ├── Meta.tests.ps1 ├── MetaFixers.psm1 ├── ScriptAnalyzerSettings.psd1 └── out └── .gitkeep /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * -crlf 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | github: eizedev 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /.github/workflows/devskim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/workflows/devskim.yml -------------------------------------------------------------------------------- /.github/workflows/powershell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/workflows/powershell.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/un-stale-on-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.github/workflows/un-stale-on-comment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/LICENSE -------------------------------------------------------------------------------- /PSItems/PSItems.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/PSItems/PSItems.psd1 -------------------------------------------------------------------------------- /PSItems/PSItems.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/PSItems/PSItems.psm1 -------------------------------------------------------------------------------- /PSItems/Private/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PSItems/Public/Find-Item.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/PSItems/Public/Find-Item.ps1 -------------------------------------------------------------------------------- /PSItems/Public/Find-ItemContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/PSItems/Public/Find-ItemContent.ps1 -------------------------------------------------------------------------------- /PSItems/Public/Get-ItemSize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/PSItems/Public/Get-ItemSize.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/README.md -------------------------------------------------------------------------------- /docs/en-US/Find-Item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/docs/en-US/Find-Item.md -------------------------------------------------------------------------------- /docs/en-US/Find-ItemContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/docs/en-US/Find-ItemContent.md -------------------------------------------------------------------------------- /docs/en-US/Get-ItemSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/docs/en-US/Get-ItemSize.md -------------------------------------------------------------------------------- /docs/en-US/PSItems-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/docs/en-US/PSItems-help.xml -------------------------------------------------------------------------------- /psakeFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/psakeFile.ps1 -------------------------------------------------------------------------------- /requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/requirements.psd1 -------------------------------------------------------------------------------- /res/benchmarks/testing-and-speed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/res/benchmarks/testing-and-speed.md -------------------------------------------------------------------------------- /res/guides/Linux-find-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/res/guides/Linux-find-compatibility.md -------------------------------------------------------------------------------- /res/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/res/img/logo.png -------------------------------------------------------------------------------- /res/img/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/res/img/logo.xcf -------------------------------------------------------------------------------- /res/img/psitems-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/res/img/psitems-logo.png -------------------------------------------------------------------------------- /tests/Help.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/tests/Help.tests.ps1 -------------------------------------------------------------------------------- /tests/Manifest.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/tests/Manifest.tests.ps1 -------------------------------------------------------------------------------- /tests/Meta.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/tests/Meta.tests.ps1 -------------------------------------------------------------------------------- /tests/MetaFixers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eizedev/PSItems/HEAD/tests/MetaFixers.psm1 -------------------------------------------------------------------------------- /tests/ScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | 3 | } 4 | -------------------------------------------------------------------------------- /tests/out/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------