I created following custom command to copy the resource path with Linux style path separator to the clipboard.
powershell -noprofile -command "${selected_resource_path} | foreach { write-output $_.Replace('\','/') } | Set-Clipboard"
The command works in a cmd shell but it does not seem to do anything in a custom command.
It would be nice if we could activate some logging that would provide debug info in the eclipse console.
This info could include
- Which command is being executed, with / without expanded variables
- What was the result, errors, ...