6 lines
		
	
	
		
			188 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			188 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
local LINKDIR="$HOME/.cache/mu/results"
 | 
						|
mu find --clearlinks --format=links --linksdir=$LINKDIR "$@" \
 | 
						|
    && mutt -F $HOME/.mutt/rc-account-private -f $LINKDIR
 | 
						|
rm -rf $LINKDIR;
 |