mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 07:29:09 +00:00 
			
		
		
		
	Changes: - Add optional short-code support - Improve completion for github.com URL (`http(s)://*.github.com` only) - Return with non-zero exit code appropriately
		
			
				
	
	
		
			29 lines
		
	
	
		
			552 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			552 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Shortens GitHub URLs.
 | 
						|
#
 | 
						|
# Authors:
 | 
						|
#   Sorin Ionescu <sorin.ionescu@gmail.com>
 | 
						|
#
 | 
						|
 | 
						|
# function git-hub-shorten-url {
 | 
						|
 | 
						|
local url="$1" code="$2"
 | 
						|
 | 
						|
if [[ "$url" == '-' ]]; then
 | 
						|
  read url <&0
 | 
						|
fi
 | 
						|
 | 
						|
if [[ -z "$url" || ! "$url" =~ ^https?:\/\/.*github.com\/ ]]; then
 | 
						|
  print "usage: $0 [ url | - ] [code] ; url must be a github.com URL" >&2
 | 
						|
  return 1
 | 
						|
fi
 | 
						|
 | 
						|
if (( $+commands[curl] )); then
 | 
						|
  curl -s -i 'https://git.io' -F "url=$url" ${(s: :)code:+ -F "code=$code"} | sed -n 's/^Location: //p'
 | 
						|
else
 | 
						|
  print "$0: command not found: curl" >&2
 | 
						|
  return 1
 | 
						|
fi
 | 
						|
 | 
						|
# }
 |