Last active
September 10, 2024 02:29
-
-
Save acidtib/f4022339db1bc26a1fcf7d66d4c44e2e to your computer and use it in GitHub Desktop.
Revisions
-
acidtib revised this gist
Sep 10, 2024 . 2 changed files with 1 addition and 0 deletions.There are no files selected for viewing
File renamed without changes.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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ Get-Content webcash.log | ForEach-Object { if (webcash insert $_ *> $null) { "OK: $_" } else { "ERROR: $_" } } -
acidtib created this gist
Sep 10, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ for x in $(cat webcash.log) ; do webcash insert $x &> /dev/null && echo "OK: $x" || echo "ERROR: $x" ; done