It was only a matter of time before this would fail, although I did not expect this to happen so soon.
		
			
				
	
	
		
			10 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh -e
 | 
						|
if [ "$#" -ne 2 ]; then
 | 
						|
	echo "Usage: $0 SEARCH-ENGINE-URI-PREFIX {PATH | URI}" >&2
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
xdg-open "$1$(fiv --thumbnail-for-search large "$2" \
 | 
						|
	| curl --silent --show-error --form 'files[]=@-' https://uguu.se/upload \
 | 
						|
	| jq --raw-output '.files[] | .url | @uri')"
 |