Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
行のコメントを解除する Fabric スクリプトをどのように記述しますか?
#force_color_prompt=yes
ログインしたユーザーの .bashrc ファイルから?
注: この質問は、ファイルの末尾に単に force_color_prompt=yes を追加してこの行を無視することではなく、特にこの特定の行を編集することに関するものです。
ファブリックにはそのための API があります。fabric.contrib.files.uncomment
fabric.contrib.files.uncomment
from fabric.contrib.files import uncomment uncomment("~/.bashrc", "^#force_color_prompt=yes", char='#')