text
stringlengths
0
834k
:: Affiche l'heure de l'ordinateur
::echo %TIME%
::echo %c%
::2 les‌ variables d'environnement
::rmdir hello_les_zeros
::mkdir hello_les_zeros
::cd hello_les_zeros
::echo tibaredha > tiba.txt
::echo amranemimi >> tiba.txt
::ren tiba.txt amrane.txt
::cd ..
::cd hello_les_zeros
::type amrane.txt
::cd ..
::cd hello_les_zeros
::start hello_les_zeros
::start amrane.txt
::start http://localhost/framework/
::del D/framework/libs/sessions/*.*
D:
cd framework/
git status
git add .
git commit -a -m ""maj""
git push
:: start http://localhost/framework/
:: pause > nul
exit
",15.1235955056,141,0.6939078752
219227,d2c724e1efe474840b893fa53cce677a3088a26a,2337,bat,Batchfile,azurecli/windowsbatch/1-create-vm.bat,Azure-Samples/gaming-lamp,161da9ac98d9db370972650e8e014c706fe0f7b5,['MIT'],2.0,2019-10-16T17:56:45.000Z,2021-06-21T02:52:20.000Z,azurecli/windowsbatch/1-create-vm.bat,Azure-Samples/gaming-lamp,161da9ac98d9db37097265...
REM #############################################################################################
REM # Ensure you have logged in to Azure with your credentials prior to running this script
REM # az login
REM # Ensure that you have the Azure subscription ID, it should show up after you have logged in and it has the format:
REM # ""id"": ""XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX""
REM #############################################################################################
REM #############################################################################################
REM # General variables used in the different Azure CLI commands run from this script
SET YOURSUBSCRIPTIONID=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
SET RESOURCEGROUPNAME=myResourceGroup
SET REGIONNAME=japanwest
SET LOGINUSERNAME=azureuser
REM #SET LOGINPASSWORD=N0tReCoMM3ND3DUseSSH
REM # Variables for creating the VM that will serve as a foundation for the VMSS golden image
SET VMNAME=myVirtualMachine
SET IMAGE=Canonical:UbuntuServer:16.04-LTS:latest
SET VMSIZE=Standard_B1s
SET VMDATADISKSIZEINGB=5
REM #############################################################################################
REM #############################################################################################
REM # Connect to Azure
CALL az login
REM # Set the Azure subscription
CALL az account set --subscription %YOURSUBSCRIPTIONID%
REM # Create a resource group
ECHO Creating resource group named %RESOURCEGROUPNAME% in region %REGIONNAME%
CALL az group create ^
--name %RESOURCEGROUPNAME% ^
--location %REGIONNAME%
REM # Create a virtual machine
ECHO Creating a virtual machine named %VMNAME% with size %VMSIZE% - it will take a few minutes
CALL az vm create ^
--resource-group %RESOURCEGROUPNAME% ^
--name %VMNAME% ^
--image %IMAGE% ^