mirror of
https://github.com/serialexperiments0815/PowershellExcercises.git
synced 2026-07-12 15:32:25 +00:00
5 lines
No EOL
234 B
PowerShell
5 lines
No EOL
234 B
PowerShell
# Prompt the user and add their input to the textfile.txt
|
|
# Adding instead of setting so previous items are not lost
|
|
|
|
$text = Read-Host "What item to you want to add to your to-do list? "
|
|
$text | add-Content $PSScriptRoot\textfile.txt |