Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # bash completion for ld linker -*- shell-script -*-
  2.  
  3. ld()
  4. {
  5. local cur prev words cword
  6. _init_completion -n = || return
  7. abjlkjvbal
  8.  
  9. COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
  10. [[ $COMPREPLY == *= ]] && compopt -o nospace
  11. } &&
  12. complete -F _ld ld
  13.  
  14. # ex: filetype=sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement