PowerShell Hack: Mit diesem PowerShell-Skript kannst du Text in mehreren Dateien ersetzen.
Ich habe ein kleines PowerShell-Skript für Windows geschrieben, um Text in einem ganzen Verzeichnis und dessen Unterverzeichnissen zu ersetzen.
Das kann manchmal ganz praktisch sein, wenn man zum Beispiel in einem ganzen Ordner mit html-Dateien, etwas in allen Dateien ersetzen möchte und das Projekt nicht in Visual Studio geöffnet hat.
Das folgende Skript ersetzt im aktuellen Verzeichnis und dessen Unterverzeichnissen in allen Textdateien (*.txt) den Text "search" mit "substitute".
$files = Get-ChildItem . *.txt -rec
foreach ($file in $files)
{
(Get-Content -Raw $file.PSPath) -replace "search", "substitute" |
Set-Content $file.PSPath
}
Vorsicht: Bevor man das Skript verwendet, empfehle ich das angepasste Skript in einem Testordner zu testen und ein Backup des Ordners zu erstellen, auf dem man das Skript anwenden möchte.
English
PowerShell Hack: With this PowerShell script you can replace text in multiple files.
I wrote a small PowerShell script for Windows to replace text in an entire directory and its subdirectories.
This can sometimes come in handy if, for example, you want to replace something in a folder of html files and you don't have the project open in Visual Studio.
The following script replaces the text "search" with "substitute" in the current directory and its subdirectories in all text files (.txt).*
$files = Get-ChildItem . *.txt -rec
foreach ($file in $files)
{
(Get-Content -Raw $file.PSPath) -replace "search", "substitute" |
Set-Content $file.PSPath
}
Caution: Before using the script, I recommend testing the customized script in a test folder and making a backup of the folder where you want to apply the script to.
Live your Secrets and Steem Prosper 🔥
xx Viki @vikisecrets
Blog post: Text in mehreren Dateien (in einem ganzen Verzeichnis) mit der Windows PowerShell ersetzen
!COFFEEA $trdo
For you
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @avare, you successfuly trended the post shared by @vikisecrets!
@vikisecrets will receive 0.13987688 TRDO & @avare will get 0.09325125 TRDO curation in 3 Days from Post Created Date!
"Call TRDO, Your Comment Worth Something!"
To view or trade TRDO go to steem-engine.com
Join TRDO Discord Channel or Join TRDO Web Site
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Echt cool, wusste gar nicht dass du auch Skripte schreibst. LG Michael
!invest_vote
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Cool 👍
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Du hast ein Upvote von mir bekommen, diese soll die Deutsche Community unterstützen. Wenn du mich unterstützten möchtest, dann sende mir eine Delegation. Egal wie klein die Unterstützung ist, Du hilfst damit der Community. DANKE!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@mima2606 denkt du hast ein Vote durch @investinthefutur verdient! ----> Wer ist investinthefutur ?
@mima2606 thinks you have earned a vote of @investinthefutur !----> Who is investinthefutur ?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Lucky you @vikisecrets here is your COFFEEA, view all your tokens at steem-engine.com Vote for c0ff33a as Witness
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Sehr interessant. Versuche mir nur gerade mal einen Use Case vorzustellen. Yours Querdenker !invest_vote
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@querdenker denkt du hast ein Vote durch @investinthefutur verdient! ----> Wer ist investinthefutur ?
@querdenker thinks you have earned a vote of @investinthefutur !----> Who is investinthefutur ?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @vikisecrets, your post successfully recieved 0.13987688 TRDO from below listed TRENDO callers:
To view or trade TRDO go to steem-engine.com
Join TRDO Discord Channel or Join TRDO Web Site
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit