Most of them are missing quotes, `` -> $(), and -o/-a usage in conditions. Also add few directives disabling checks where were too verbose.
		
			
				
	
	
		
			12 lines
		
	
	
		
			522 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			522 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# shellcheck disable=SC2016
 | 
						|
find /usr/share/applications/ /usr/local/share/applications/ -name '*.desktop' -print0 2>/dev/null | \
 | 
						|
         xargs -0 awk '
 | 
						|
         BEGINFILE { entry="" }
 | 
						|
         /^\[/ { if (tolower($0) != "\[desktop entry\]") nextfile } 
 | 
						|
         /^Exec=/ { entry = entry FILENAME ":Exec=qubes-desktop-run " FILENAME "\n"; next }
 | 
						|
         /^NoDisplay *= *true$/ { entry=""; nextfile }
 | 
						|
         /=/ { entry = entry FILENAME ":" $0 "\n" }
 | 
						|
         ENDFILE { print entry }
 | 
						|
         ' 2> /dev/null
 |