fs-utils.ps1
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
# fs-utils.ps1 — filesystem utilities =========================================

# Update file timestamps or create new files.
#
# Examples:
#   touch file.txt
#   touch a.txt, b.txt, c.txt
#   'file1.txt','file2.txt' | touch
function Invoke-Touch {
    [CmdletBinding()]
    param(
        [Parameter(Position = 0, ValueFromPipeline, ValueFromRemainingArguments)]
        [string[]]$Path,

        [Alias('h')]
        [switch]$Help
    )

    begin {
        if ($Help) { $MyInvocation.MyCommand | Get-Help; return }
    }

    process {
        if (-not $Path) { $MyInvocation.MyCommand | Get-Help; return }

        foreach ($p in $Path) {
            try {
                if (Test-Path $p) {
                    (Get-Item $p).LastWriteTime = Get-Date
                }
                else {
                    $null = New-Item -ItemType File -Path $p -Force
                }
            }
            catch {
                Write-Warning "touch: failed for '$p' — $($_.Exception.Message)"
            }
        }
    }
}

Set-Alias -Name touch -Value Invoke-Touch -Scope Global

# List only directories in a path
#
# Examples:
#   lsd
#   lsd C:\Projects
function Get-Dirs {
    [CmdletBinding()]
    param(
        [Parameter(Position = 0)]
        [string]$Path = ".",

        [Alias('h')]
        [switch]$Help
    )

    if ($Help) { $MyInvocation.MyCommand | Get-Help; return }

    Get-ChildItem -LiteralPath $Path -Directory | Sort-Object Name
}

Set-Alias -Name lsd -Value Get-Dirs -Scope Global

# List only files in a path
#
# Examples:
#   lsf
#   lsf C:\Projects
function Get-Files {
    [CmdletBinding()]
    param(
        [Parameter(Position = 0)]
        [string]$Path = ".",

        [Alias('h')]
        [switch]$Help
    )

    if ($Help) { $MyInvocation.MyCommand | Get-Help; return }

    Get-ChildItem -LiteralPath $Path -File | Sort-Object Name
}

Set-Alias -Name lsf -Value Get-Files -Scope Global

# List most recently modified items in a path
#
# Examples:
#   recent
#   recent C:\Projects
#   recent -Limit 5
function Get-Recent {
    [CmdletBinding()]
    param(
        [Parameter(Position = 0)]
        [string]$Path = ".",

        [Parameter()]
        [int]$Limit = 10,

        [Alias('h')]
        [switch]$Help
    )

    if ($Help) { $MyInvocation.MyCommand | Get-Help; return }

    Get-ChildItem -LiteralPath $Path -ErrorAction SilentlyContinue |
    Sort-Object LastWriteTime -Descending |
    Select-Object -First $Limit |
    Format-Table Name, LastWriteTime, Length -AutoSize
}

Set-Alias -Name recent -Value Get-Recent -Scope Global

# Copy a path or file contents to the clipboard.
#
# Flags:
#   -Content   copy file contents instead of the path
#
# Examples:
#   yank
#   yank foo.txt
#   yank foo.txt -Content
function Invoke-Yank {
    [CmdletBinding()]
    param(
        [Parameter(Position = 0)]
        [string]$Path = ".",

        [Alias('c')]
        [switch]$Content,

        [Alias('h')]
        [switch]$Help
    )

    if ($Help) { $MyInvocation.MyCommand | Get-Help; return }

    $Target = (Resolve-Path $Path -ErrorAction Stop).Path

    if ($Content) {
        if (-not (Test-Path $Target -PathType Leaf)) {
            Write-Error "yank: '$Target' is not a file. Use without -Content to copy the path."
            return
        }
        $Data = Get-Content -LiteralPath $Target -Raw
        $Data | Set-Clipboard
        $Lines = ($Data -split "`n").Count
        Write-Host "Copied file contents: " -NoNewline -ForegroundColor Blue
        Write-Host "$Lines lines"
    }
    else {
        $Target | Set-Clipboard
        Write-Host "Copied path: " -NoNewline -ForegroundColor Blue
        Write-Host $Target
    }
}

Set-Alias -Name yank -Value Invoke-Yank -Scope Global

# Write clipboard contents into a file.
#
# Flags:
#   -Overwrite   replace file instead of appending
#
# Examples:
#   shank notes.txt
#   shank notes.txt -Overwrite
function Invoke-Shank {
    [CmdletBinding()]
    param(
        [Parameter(Mandatory, Position = 0)]
        [string]$Path,

        [Alias('o')]
        [switch]$Overwrite,

        [Alias('h')]
        [switch]$Help
    )

    if ($Help) { $MyInvocation.MyCommand | Get-Help; return }

    $Data = Get-Clipboard
    if (-not $Data) {
        Write-Host "Clipboard is empty. Nothing to shank." -ForegroundColor Yellow
        return
    }

    if ($Overwrite) {
        $Data | Set-Content -Path $Path -Force
        Write-Host "Overwritten: " -NoNewline -ForegroundColor Blue
        Write-Host $Path
    }
    else {
        $Data | Add-Content -Path $Path
        Write-Host "Appended to: " -NoNewline -ForegroundColor Blue
        Write-Host $Path
    }
}

Set-Alias -Name shank -Value Invoke-Shank -Scope Global

# Pretty-print a directory tree with gitignore support.
#
# Flags:
#   -DirsOnly      show directories only
#   -FilesOnly     show files only
#   -NoGitIgnore   ignore .gitignore files
#
# Examples:
#   tree
#   tree C:\Projects -Depth 5
#   tree -DirsOnly
function Show-Tree {
    param(
        [string]$Path = ".",
        [int]$Depth = 3,
        [switch]$DirsOnly,
        [switch]$FilesOnly,
        [switch]$NoGitIgnore,

        [Alias('h')]
        [switch]$Help
    )

    if ($Help) { $MyInvocation.MyCommand | Get-Help; return }

    if ($DirsOnly -and $FilesOnly) {
        Write-Error "tree: -DirsOnly and -FilesOnly are mutually exclusive. Use one or neither."
        return
    }

    $Root = (Resolve-Path $Path).Path

    $C = @{
        TopLeft  = [char]0x256D
        VLine    = [char]0x2502
        TBranch  = [char]0x251C
        LBranch  = [char]0x2570
        HLine    = [char]0x2500
        DirMark  = [char]0x25B8
        FileMark = [char]0x2022
    }

    function Get-GitIgnorePatterns {
        param([string]$Dir)
        if ($NoGitIgnore) { return @() }
        $IgnoreFile = Join-Path $Dir ".gitignore"
        if (-not (Test-Path $IgnoreFile)) { return @() }
        $Patterns = @()
        foreach ($Line in Get-Content $IgnoreFile) {
            $Line = $Line.Trim()
            if ($Line -eq '' -or $Line.StartsWith('#')) { continue }
            $Line = $Line.TrimEnd('/')
            $Line = $Line.TrimStart('/')
            # Strip **/ prefix
            $Line = $Line -replace '^\*\*/', ''
            $Patterns += $Line
        }
        return $Patterns
    }

    function Test-Ignored {
        param([string]$Name, [string[]]$Patterns)
        foreach ($Pat in $Patterns) {
            if ($Name -like $Pat) { return $true }
        }
        return $false
    }

    function Write-Prefix {
        param([bool[]]$IsLastStack)
        foreach ($last in $IsLastStack) {
            if ($last) { Write-Host "   " -NoNewline }
            else { Write-Host "$($C.VLine)  " -NoNewline -ForegroundColor DarkGray }
        }
    }

    function Walk {
        param([string]$P, [int]$Level, [bool[]]$IsLastStack, [string[]]$IgnorePatterns)

        if ($Level -gt $Depth) { return }

        $LocalPatterns = $IgnorePatterns + (Get-GitIgnorePatterns -Dir $P)

        $Entries = Get-ChildItem -LiteralPath $P -ErrorAction SilentlyContinue
        if ($DirsOnly) { $Entries = $Entries | Where-Object { $_.PSIsContainer } }
        if ($FilesOnly) { $Entries = $Entries | Where-Object { -not $_.PSIsContainer } }
        if ($LocalPatterns.Count -gt 0) {
            $Entries = $Entries | Where-Object { -not (Test-Ignored -Name $_.Name -Patterns $LocalPatterns) }
        }

        $Entries = $Entries | Sort-Object @{ Expression = { $_.PSIsContainer }; Descending = $true }, Name
        $Count = $Entries.Count
        if ($Count -eq 0) { return }

        for ($i = 0; $i -lt $Count; $i++) {
            $Entry = $Entries[$i]
            $IsLast = ($i -eq ($Count - 1))
            $Branch = if ($IsLast) { "$($C.LBranch)$($C.HLine) " } else { "$($C.TBranch)$($C.HLine) " }
            $Marker = if ($Entry.PSIsContainer) { "$($C.DirMark) " } else { "$($C.FileMark) " }

            Write-Prefix -IsLastStack $IsLastStack
            Write-Host $Branch -NoNewline -ForegroundColor DarkGray
            Write-Host $Marker -NoNewline

            if ($Entry.PSIsContainer) {
                Write-Host $Entry.Name -ForegroundColor Green
                Walk -P $Entry.FullName -Level ($Level + 1) -IsLastStack ($IsLastStack + $IsLast) -IgnorePatterns $LocalPatterns
            }
            else {
                Write-Host $Entry.Name
            }
        }
    }

    $RootPatterns = Get-GitIgnorePatterns -Dir $Root

    Write-Host "$($C.TopLeft)$($C.HLine) " -NoNewline -ForegroundColor DarkGray
    Write-Host "Parent Dir: "              -NoNewline  -ForegroundColor Blue
    Write-Host $Root
    Write-Host $C.VLine                                -ForegroundColor DarkGray

    Walk -P $Root -Level 1 -IsLastStack @() -IgnorePatterns $RootPatterns
}

Set-Alias -Name tree -Value Show-Tree -Scope Global

# function Show-Tree {
#     param(
#         [string]$Path = ".",
#         [int]$Depth = 3,
#         [switch]$DirsOnly,
#         [switch]$FilesOnly,
#         [switch]$NoGitIgnore
#     )

#     # Soft mutex — better error message than parameter sets
#     if ($DirsOnly -and $FilesOnly) {
#         Write-Error "Show-Tree: -DirsOnly and -FilesOnly are mutually exclusive. Use one or neither."
#         return
#     }

#     $Root = (Resolve-Path $Path).Path

#     # Pre-compute box-drawing chars once
#     $C = @{
#         TopLeft  = [char]0x256D  # ╭
#         VLine    = [char]0x2502  # │
#         TBranch  = [char]0x251C  # ├
#         LBranch  = [char]0x2570  # ╰
#         HLine    = [char]0x2500  # ─
#         DirMark  = [char]0x25B8  # ▸
#         FileMark = [char]0x2022  # •
#     }

#     # Parse a .gitignore file into a list of pattern strings.
#     # Returns empty array if file doesn't exist or NoGitIgnore is set.
#     function Get-GitIgnorePatterns {
#         param([string]$Dir)

#         if ($NoGitIgnore) { return @() }

#         $IgnoreFile = Join-Path $Dir ".gitignore"
#         if (-not (Test-Path $IgnoreFile)) { return @() }

#         $Patterns = @()
#         foreach ($Line in Get-Content $IgnoreFile) {
#             $Line = $Line.Trim()
#             # Skip comments and blank lines
#             if ($Line -eq '' -or $Line.StartsWith('#')) { continue }
#             # Normalize: strip trailing slash (dir-only markers), strip leading slash (anchored)
#             $Line = $Line.TrimEnd('/')
#             $Line = $Line.TrimStart('/')
#             $Patterns += $Line
#         }
#         return $Patterns
#     }

#     # Test an entry name against accumulated ignore patterns.
#     function Test-Ignored {
#         param(
#             [string]$Name,
#             [string[]]$Patterns
#         )
#         foreach ($Pat in $Patterns) {
#             if ($Name -like $Pat) { return $true }
#         }
#         return $false
#     }

#     function Write-Prefix {
#         param([bool[]]$IsLastStack)
#         foreach ($last in $IsLastStack) {
#             if ($last) {
#                 Write-Host "   " -NoNewline
#             }
#             else {
#                 Write-Host "$($C.VLine)  " -NoNewline -ForegroundColor DarkGray
#             }
#         }
#     }

#     function Walk {
#         param(
#             [string]$P,
#             [int]$Level,
#             [bool[]]$IsLastStack,
#             [string[]]$IgnorePatterns
#         )

#         if ($Level -gt $Depth) { return }

#         # Accumulate any .gitignore patterns defined at this directory level
#         $LocalPatterns = $IgnorePatterns + (Get-GitIgnorePatterns -Dir $P)

#         # Get entries, apply DirsOnly / FilesOnly filter early
#         $Entries = Get-ChildItem -LiteralPath $P -ErrorAction SilentlyContinue
#         if ($DirsOnly) { $Entries = $Entries | Where-Object { $_.PSIsContainer } }
#         if ($FilesOnly) { $Entries = $Entries | Where-Object { -not $_.PSIsContainer } }

#         # Apply gitignore patterns
#         if ($LocalPatterns.Count -gt 0) {
#             $Entries = $Entries | Where-Object { -not (Test-Ignored -Name $_.Name -Patterns $LocalPatterns) }
#         }

#         $Entries = $Entries | Sort-Object @{ Expression = { $_.PSIsContainer }; Descending = $true }, Name
#         $Count = $Entries.Count
#         if ($Count -eq 0) { return }

#         for ($i = 0; $i -lt $Count; $i++) {
#             $Entry = $Entries[$i]
#             $IsLast = ($i -eq ($Count - 1))
#             $Branch = if ($IsLast) { "$($C.LBranch)$($C.HLine) " } else { "$($C.TBranch)$($C.HLine) " }
#             $Marker = if ($Entry.PSIsContainer) { "$($C.DirMark) " } else { "$($C.FileMark) " }

#             Write-Prefix -IsLastStack $IsLastStack
#             Write-Host $Branch -NoNewline -ForegroundColor DarkGray
#             Write-Host $Marker -NoNewline

#             if ($Entry.PSIsContainer) {
#                 Write-Host $Entry.Name -ForegroundColor Green
#                 Walk -P $Entry.FullName -Level ($Level + 1) -IsLastStack ($IsLastStack + $IsLast) -IgnorePatterns $LocalPatterns
#             }
#             else {
#                 Write-Host $Entry.Name
#             }
#         }
#     }

#     # Seed root-level gitignore patterns
#     $RootPatterns = Get-GitIgnorePatterns -Dir $Root

#     Write-Host "$($C.TopLeft)$($C.HLine) " -NoNewline -ForegroundColor DarkGray
#     Write-Host "Parent Dir: "              -NoNewline  -ForegroundColor Blue
#     Write-Host $Root
#     Write-Host $C.VLine                                -ForegroundColor DarkGray

#     Walk -P $Root -Level 1 -IsLastStack @() -IgnorePatterns $RootPatterns
# }

# Set-Alias -Name tree -Value Show-Tree -Scope Global