V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
soulhacker
V2EX  ›  Python

Sh.py: Using any shell command as Python func

  •  
  •   soulhacker ·
    neolee · 2012-09-17 10:30:44 +08:00 · 6942 次点击
    这是一个创建于 4210 天前的主题,其中的信息可能已经有所发展或是发生改变。
    http://amoffat.github.com/sh/index.html

    Samples:

    # print ifconfig
    from sh import ifconfig
    print(ifconfig("wlan0"))

    # checkout master branch
    git(checkout="master")

    # print the contents of this directory
    print(ls("-l"))

    # get the longest line of this file
    longest_line = wc(__file__, "-L")
    10 条回复    1970-01-01 08:00:00 +08:00
    shiweifu
        1
    shiweifu  
       2012-09-17 11:15:49 +08:00
    赞!
    for4
        2
    for4  
       2012-09-17 11:54:47 +08:00
    很酷啊!
    cabinw
        3
    cabinw  
       2012-09-17 12:05:02 +08:00
    大赞!
    fanzeyi
        4
    fanzeyi  
       2012-09-17 12:53:47 +08:00
    很棒=w=
    RagnarokStack
        5
    RagnarokStack  
       2012-09-17 13:23:35 +08:00
    Awesome!
    yegle
        6
    yegle  
       2012-09-17 13:40:07 +08:00
    好精彩!

    有个问题,考虑到POSIX style和GNU style的不同,这个例子在Mac之类系统上执行可能有问题:

    from sh import ls

    ls = ls.bake("-la")
    print(ls) # "/usr/bin/ls -la"

    # resolves to "ls / -la"
    print(ls("/"))

    应该resolve成ls -la /
    eric_q
        7
    eric_q  
       2012-09-17 13:55:04 +08:00
    一定程度上可以抛弃 subprocess 了
    chaoswong189
        8
    chaoswong189  
       2012-09-17 17:15:31 +08:00
    cool work!!
    很好用,咋早没想到写个这个出来……
    离偷懒的程序员差得还很远啊
    chuangbo
        9
    chuangbo  
       2012-09-17 21:00:56 +08:00
    看完文档,真的是屌爆了,神器级别的
    gastlygem
        10
    gastlygem  
       2012-09-18 13:56:57 +08:00
    很有趣的项目,Windows支持在这里: http://pypi.python.org/pypi/pbs
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3253 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 12:02 · PVG 20:02 · LAX 05:02 · JFK 08:02
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.