This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 Set-Location -Path C:\... | |
| 2 New-Item -ItemType Directory -Path C:\ -Name FolderTest1... 3 New-Item -ItemType Directory -Path C:\FolderTest2... 4 New-Item -ItemType File -Path C:\FolderTest1 -Name File1... 5 New-Item -ItemType File -Path C:\FolderTest1 -Name File2... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Id CommandLine | |
| -- ----------- | |
| 1 Set-Location -Path C:\... | |
| 2 New-Item -ItemType Directory -Path C:\ -Name FolderTest1... | |
| 3 New-Item -ItemType Directory -Path C:\FolderTest2... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 365 cat wilders.csv | |
| 366 grep "PHP" wilders.csv | grep "France" | grep "2019" | wc -l | |
| 367 grep "PHP" wilders.csv | grep "France" | grep "2019" | wc -l > php_france_20php_france_2019.csv | |
| 368 cat php_france_2019.csv | |
| 369 cat php_france_20php_france_2019.csv | |
| 370 mv php_france_20php_france_2019.csv php_france_2019.csv/ | |
| 371 mv php_france_2019.csv phpfrance_20php_france_2019.csv/ | |
| 372 man mv | |
| 373* mv php | |
| 374 mv php_france_20php_france_2019.csv php_france_2019.csv |