• 0 Posts
  • 9 Comments
Joined 11 months ago
cake
Cake day: August 22nd, 2023

help-circle



  • It’s markdown, you should be able to indent your lines by 4 spaces or fence with triple backtics to get code blocks. Your client’s editor may have a button to help

    ```
    $file = Get-Content -Path .\individuals2.txt
    
    foreach ($line in $file)
    {
        Copy-Item -Path .\template.docx -Destination ".\$(2 + $line + '.docs')"
    }
    ```
    

    Becomes

    $file = Get-Content -Path .\individuals2.txt
    
    foreach ($line in $file)
    {
        Copy-Item -Path .\template.docx -Destination ".\$(2 + $line + '.docs')"
    }