_pfsinfo_command(){ 
	source `which pfs`
    COMPREPLY=()
    _get_comp_words_by_ref cur prev words cword 
	if [[ ${cur} == -* ]] ; then 
        LIST="$(_parse_help pfsinfo)"
	elif [[ ${cur} == [[:alnum:]]* ]] ; then 
        LIST="$(ls -1 ./ |grep .$EXT$)"
	else  
		_filedir
		return
    fi
	COMPREPLY=( $(compgen -W "$LIST" -- ${cur}) )
}
complete -F _pfsinfo_command pfsinfo
