We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
function! util#md5(s) if executable('md5') return substitute(system('echo -n "'.a:s.'" | md5'), '\n', '', 'g')
这段代码中的md5不是可执行文件,应改为md5sum
function! util#md5(s) if executable('md5sum') return substitute(system('echo -n "'.a:s.'" | md5sum'), '\n', '', 'g')
我的系统是deepin v23
The text was updated successfully, but these errors were encountered:
已修复 #6
Sorry, something went wrong.
No branches or pull requests
function! util#md5(s)
if executable('md5')
return substitute(system('echo -n "'.a:s.'" | md5'), '\n', '', 'g')
这段代码中的md5不是可执行文件,应改为md5sum
function! util#md5(s)
if executable('md5sum')
return substitute(system('echo -n "'.a:s.'" | md5sum'), '\n', '', 'g')
我的系统是deepin v23
The text was updated successfully, but these errors were encountered: