23 lines
		
	
	
		
			393 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			393 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if [[ ! -d ~/wconv/native/bin ]]; then
 | 
						|
    return 1
 | 
						|
fi
 | 
						|
 | 
						|
export PATH=$PATH:~/wconv/native/bin/
 | 
						|
 | 
						|
function blog () {
 | 
						|
    if [[ -z 'command -v cj' ]]; then
 | 
						|
        echo "Cannot find cj"
 | 
						|
        return 1
 | 
						|
    fi
 | 
						|
 | 
						|
    if [[ -z "$1" ]]; then
 | 
						|
        __func_head "CONTENT(CJ)"
 | 
						|
        echo
 | 
						|
    else
 | 
						|
        FILE=$(date +%Y%m%d)
 | 
						|
        echo "$1 " | xargs -d' ' cj >> ~/blog/$FILE
 | 
						|
    fi
 | 
						|
}
 |