15 lines
		
	
	
		
			156 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			156 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
param="$@"
 | 
						|
 | 
						|
if [ -z "$param" ];
 | 
						|
then
 | 
						|
    echo "nget <uri>"
 | 
						|
    exit 2
 | 
						|
fi
 | 
						|
 | 
						|
# web resource
 | 
						|
#   dl youtube with yt-dlp
 | 
						|
#   dl image with ftp
 | 
						|
#   dl
 |