19 lines
		
	
	
		
			297 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			297 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
message="$@"
 | 
						|
case "$OSTYPE" in
 | 
						|
    darwin*)
 | 
						|
        say "$message"
 | 
						|
        ;;
 | 
						|
    linux*)
 | 
						|
        mimic \
 | 
						|
            --setf duration_stretch=0.65 \
 | 
						|
            -t "$message" \
 | 
						|
            -voice 'kal16'
 | 
						|
            #-voice 'slt'
 | 
						|
        ;;
 | 
						|
    *)
 | 
						|
        echo "unsupported OS"
 | 
						|
esac
 | 
						|
 |