forked from ungleich-public/cdist
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			181 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			181 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# Generate filelist excluding stuff that takes only space
 | 
						|
for pkg in bash systemd util-linux openssh; do
 | 
						|
    pacman -Qlq $pkg | grep -v \
 | 
						|
        -e /usr/share/man/
 | 
						|
done
 |