Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
29039 authored Mar 21, 2020
1 parent bdd9ca6 commit c57de7c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Binary file added iconfinder_32_icons_2191555.ico
Binary file not shown.
22 changes: 22 additions & 0 deletions reveal-exe-parameters.ahk
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
for n, param in A_Args ; For each parameter:
{
myParams1 .= param . " "
}

for n, param in A_Args ; For each parameter:
{
myParams2 .= n . ": " . param . "`n"
}

myParams1 := StrReplace(myParams1, """","\")
myParams2 := StrReplace(myParams2, """","\")

MsgBox 0, % "reveal-exe-parameters: " . A_YYYY . "-" . A_MM . "-" . A_DD . " " . A_Hour . ":" . A_Min . ":" . A_Sec
, % "File Name: " . A_ScriptName
. "`nFile Directory: " . A_ScriptDir
. "`nWorking Dir: " . A_WorkingDir
. "`n`nFull Command:`n" . A_ScriptDir . "\" . A_ScriptName . " " . myParams1
. "`n`nParameters breakdown:`n" . myParams2
. "`n`nHINT: Press CTRL+C to copy this text"
. "`n`nNote: Double-quotes("") are not shown.`nParameters with spaces means that double quotes were used on that parameter."
ExitApp

0 comments on commit c57de7c

Please sign in to comment.