├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── package-deprecation-notice.md │ └── package-update-addition-to-docker-image.md └── workflows │ ├── CI.yml │ └── shellghazdosync.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── SOURCES ├── docs ├── add-package-into-cloudshell.md ├── azcli-workaround.md ├── cloudshell-and-azurecli.md └── package-inclusion-guide.md ├── linux ├── ansible │ ├── ansible │ ├── ansible-config │ ├── ansible-connection │ ├── ansible-console │ ├── ansible-doc │ ├── ansible-galaxy │ ├── ansible-inventory │ ├── ansible-playbook │ ├── ansible-pull │ └── ansible-vault ├── base.Dockerfile ├── powershell │ ├── Dockerfile.Data.json │ ├── Invoke-PreparePowerShell.ps1 │ ├── PSCloudShellStartup.ps1 │ ├── PSCloudShellUtility │ │ ├── PSCloudShellUtility.Help.txt │ │ ├── PSCloudShellUtility.Resource.psd1 │ │ ├── PSCloudShellUtility.psd1 │ │ ├── PSCloudShellUtility.psm1 │ │ ├── PSCloudShellUtilityAcronyms.json │ │ └── tips.json │ ├── libs │ │ └── libmi.so │ ├── pkgs │ │ └── azuread.standard.preview.0.0.0.10.nupkg │ └── setupPowerShell.ps1 ├── tdnfinstall.sh └── tools.Dockerfile ├── roadmap └── cs-roadmap-2023.md ├── test.ps1 └── tests ├── PSinLinuxCloudShellImage.Tests.ps1 ├── Root.Tests.ps1 ├── command_list ├── root-tests.ps1 ├── test-mvn.sh ├── test.ps1 └── test.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/package-deprecation-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/.github/ISSUE_TEMPLATE/package-deprecation-notice.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/package-update-addition-to-docker-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/.github/ISSUE_TEMPLATE/package-update-addition-to-docker-image.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/shellghazdosync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/.github/workflows/shellghazdosync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/SOURCES -------------------------------------------------------------------------------- /docs/add-package-into-cloudshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/docs/add-package-into-cloudshell.md -------------------------------------------------------------------------------- /docs/azcli-workaround.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/docs/azcli-workaround.md -------------------------------------------------------------------------------- /docs/cloudshell-and-azurecli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/docs/cloudshell-and-azurecli.md -------------------------------------------------------------------------------- /docs/package-inclusion-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/docs/package-inclusion-guide.md -------------------------------------------------------------------------------- /linux/ansible/ansible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible -------------------------------------------------------------------------------- /linux/ansible/ansible-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-config -------------------------------------------------------------------------------- /linux/ansible/ansible-connection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-connection -------------------------------------------------------------------------------- /linux/ansible/ansible-console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-console -------------------------------------------------------------------------------- /linux/ansible/ansible-doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-doc -------------------------------------------------------------------------------- /linux/ansible/ansible-galaxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-galaxy -------------------------------------------------------------------------------- /linux/ansible/ansible-inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-inventory -------------------------------------------------------------------------------- /linux/ansible/ansible-playbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-playbook -------------------------------------------------------------------------------- /linux/ansible/ansible-pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-pull -------------------------------------------------------------------------------- /linux/ansible/ansible-vault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/ansible/ansible-vault -------------------------------------------------------------------------------- /linux/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/base.Dockerfile -------------------------------------------------------------------------------- /linux/powershell/Dockerfile.Data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/Dockerfile.Data.json -------------------------------------------------------------------------------- /linux/powershell/Invoke-PreparePowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/Invoke-PreparePowerShell.ps1 -------------------------------------------------------------------------------- /linux/powershell/PSCloudShellStartup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/PSCloudShellStartup.ps1 -------------------------------------------------------------------------------- /linux/powershell/PSCloudShellUtility/PSCloudShellUtility.Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/PSCloudShellUtility/PSCloudShellUtility.Help.txt -------------------------------------------------------------------------------- /linux/powershell/PSCloudShellUtility/PSCloudShellUtility.Resource.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/PSCloudShellUtility/PSCloudShellUtility.Resource.psd1 -------------------------------------------------------------------------------- /linux/powershell/PSCloudShellUtility/PSCloudShellUtility.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/PSCloudShellUtility/PSCloudShellUtility.psd1 -------------------------------------------------------------------------------- /linux/powershell/PSCloudShellUtility/PSCloudShellUtility.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/PSCloudShellUtility/PSCloudShellUtility.psm1 -------------------------------------------------------------------------------- /linux/powershell/PSCloudShellUtility/PSCloudShellUtilityAcronyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/PSCloudShellUtility/PSCloudShellUtilityAcronyms.json -------------------------------------------------------------------------------- /linux/powershell/PSCloudShellUtility/tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/PSCloudShellUtility/tips.json -------------------------------------------------------------------------------- /linux/powershell/libs/libmi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/libs/libmi.so -------------------------------------------------------------------------------- /linux/powershell/pkgs/azuread.standard.preview.0.0.0.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/pkgs/azuread.standard.preview.0.0.0.10.nupkg -------------------------------------------------------------------------------- /linux/powershell/setupPowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/powershell/setupPowerShell.ps1 -------------------------------------------------------------------------------- /linux/tdnfinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/tdnfinstall.sh -------------------------------------------------------------------------------- /linux/tools.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/linux/tools.Dockerfile -------------------------------------------------------------------------------- /roadmap/cs-roadmap-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/roadmap/cs-roadmap-2023.md -------------------------------------------------------------------------------- /test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/test.ps1 -------------------------------------------------------------------------------- /tests/PSinLinuxCloudShellImage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/tests/PSinLinuxCloudShellImage.Tests.ps1 -------------------------------------------------------------------------------- /tests/Root.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/tests/Root.Tests.ps1 -------------------------------------------------------------------------------- /tests/command_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/tests/command_list -------------------------------------------------------------------------------- /tests/root-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/tests/root-tests.ps1 -------------------------------------------------------------------------------- /tests/test-mvn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/tests/test-mvn.sh -------------------------------------------------------------------------------- /tests/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/tests/test.ps1 -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/CloudShell/HEAD/tests/test.sh --------------------------------------------------------------------------------