Requirements

  • python >= 2.6

Installation

The Atmark should be installed using pip:

pip install atmark

Bash completion

Atmark supports bash completion. Just add this lines to your .bashrc:

_atmark_complete() {
    COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]}" \\
                COMP_CWORD=$COMP_CWORD \\
                _ATMARK_COMPLETE=complete $1 ) )
    return 0
}

complete -F _atmark_complete -o default @ @@;

You can easy do it with command:

@ -bs >> ~/.bashrc