7 lines
		
	
	
		
			92 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			92 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -eou pipefail
 | 
						|
 | 
						|
echo $(pacman -Qqe) | \
 | 
						|
    tr " " "\n" | \
 | 
						|
    sort
 |