Skip to content

Instantly share code, notes, and snippets.

View TomoyukiAota's full-sized avatar

Tomoyuki Aota TomoyukiAota

View GitHub Profile
@TomoyukiAota
TomoyukiAota / FindFilesWhosePathExceedMaxLength.ps1
Last active April 13, 2019 19:36
PowerShell command to find files whose path length exceeds the limit (260 characters).
cmd /c dir /s /b |? {$_.length -gt 260}
@TomoyukiAota
TomoyukiAota / short-markdown-notation-for-image-with-link.md
Last active January 14, 2024 18:55
[Markdown] Short notation for an image with a link using reference-style link
@TomoyukiAota
TomoyukiAota / Microsoft.PowerShell_profile.ps1
Last active December 23, 2018 01:32
PowerShell profile for equivalent command of "rm -rf" in Bash.
function rmrf {
<#
.DESCRIPTION
Deletes the specified file or directory.
.PARAMETER target
Target file or directory to be deleted.
.NOTES
This is an equivalent command of "rm -rf" in Unix-like systems.