Skip to content

Instantly share code, notes, and snippets.

@mamemomonga
Last active March 22, 2022 04:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mamemomonga/da33d60a4ddf4b82804b94cc2eafd759 to your computer and use it in GitHub Desktop.
Save mamemomonga/da33d60a4ddf4b82804b94cc2eafd759 to your computer and use it in GitHub Desktop.
クリップボードにあるAmazon.co.jpの商品URLを綺麗にする(macOS用)
#!/bin/bash
set -eu
RESULT="$(pbpaste | perl -E 'my $url=<>; chomp; $url=~m#(/dp/[^/]+)(?:\?|/)#; say "https://amazon.co.jp$1"')"
echo "$RESULT"
echo "$RESULT" | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment