實用Shell命令備忘

來源:互聯網
上載者:User

開場白:這裡簡單記錄一些常用的bash命令,一則備忘,二來希望可以協助別人解決一些問題。

1.檢測檔案是否存在

if [ -f ./foo.txt ]then    echo the file existsfi

2.檢測目錄是否存在

if [ -d ./test1 ]thenecho the directory existsfi

3.讓高亮功能一直存在

androidyue@ubuntu:~/Desktop$ ls | grep s --color=always | more

4.使用curl批量下載ftp資源

curl -u user:password 'ftp://10.0.1.5/archive/photo/IMG_[8763-9147].JPG' -O

5.後台執行程式,在程式後加上&,注意兩者之間有一個空格

androidyue@ubuntu:~/Desktop$ start_eclipse.sh &[1] 3749

6.擷取檔案資訊

androidyue@ubuntu:~/Pictures/coding$ file flyweight.png flyweight.png: PNG image data, 723 x 311, 8-bit/color RGB, non-interlaced

7.善用alias

使用別名快捷開啟常用路徑,簡單高效,方法:編輯~/.bashrc 加入類似下面的設定

#quick Accessesalias pydir='cd /home/androidyue/osc_git/py_works/'alias shdir='cd /home/androidyue/osc_git/shell_works/'

儲存 

source ~/.bashrc

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.