Search notes:

Script: wsl-screenshot-to-clipboard

wsl-screenshot-to-clipboard is used in a Windows Subsystem for Linux (WSL) environment to copy a screenshot made with SnippingTool.exe into the clipboard using xclip.
#!/bin/sh

# /mnt/c/Users/Rene/AppData/Local/Microsoft/WindowsApps/SnippingTool.exe

most_recent_file=$( ls -tr1 /mnt/c/Users/Rene/Pictures/Screenshots/*.png | tail -1)

echo most_recent_file = $most_recent_file
xclip -i -selection clipboard -t image/png "$most_recent_file"
rm "$most_recent_file"
Github repository scripts-and-utilities, path: /wsl-screenshot-to-clipboard

See also

Scripts

Index