Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ ⎇ branch:  ClickyColoury


Check-in [bec07bd1d8]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:text file fixup (evil Notepad!!)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: bec07bd1d8066a27e6c2959ad13046ca32c194dc
User & Date: mario 2018-04-22 19:36:23
Context
2018-04-22
19:45
Remove logging from Out-Gui check-in: d4ba9808be user: mario tags: trunk
19:36
text file fixup (evil Notepad!!) check-in: bec07bd1d8 user: mario tags: trunk
19:32
Sample plugin, warning message for `# confirm: 1` meta flag. (Used for server restarts, or more involved delete operations, e.g.) check-in: ef70674889 user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added dev/cleanCRCRLF.ps1.

























>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
# api: cli
# title: clean CRCRLF occurences

Param ($fullname)

$src = [System.IO.File]::ReadAllText($fullname)

if ($src -match "\r\r+\n") {
    Write-Host -f Red $fullname
    $src = $src -replace "\r\r+\n","`r`n"
    [System.IO.File]::WriteAllText($fullname, $src, [System.Text.Encoding]::UTF8)
}