44、linux shell命令,ldd

1、說明dd - print shared library dependenciesldd [OPTION]... FILE...2、option-u Print unused direct dependencies.  (Since glibc 2.3.4.)-d Perform relocations and report any missing objects (ELF only).-r Perform relocations for both data objects and

linux shell,tr命令

1、說明 tr - translate or delete characterstr [OPTION]... SET1 [SET2]Translate, squeeze, and/or delete characters from standard input, writing to standard output.SETs are specified as strings of characters.tr

45、linux shell命令,ldconfig

1、說明/sbin/ldconfig - configure dynamic linker run-time bindingsldconfig option2、option1) -p:指示ldconfig列印出當前快取檔案所儲存的所有共用庫的名字2)

34、linux shell,常用函數strace

1、說明strace - trace system calls and signals2、option1)strace -p pid  跟蹤某個後台進程2)strace -o filename 把跟蹤結果輸出到檔案3)strace -T 記錄每個系統調用花費的時間,可以看看哪個系統調用時間長參考4)strace -t(或者 -tt)記錄每個系統調用發生是的時間(時分秒的格式)5)strace -s 1024 顯示系統調用參數時,字串顯示的長度,預設是32,如果字串參數很長,很多資訊顯示不出來。6

40、linux shell常用函數mkdir,rmdir,mount

1、mkdir-m, --mode=MODE   set file mode (as in chmod), not a=rwx - umask-p, --parents     no error if existing, make parent directories as neededmkdir -p DIR1/DIR2  //如果dir1不存在,也建立dir1mkdir -m 755 /usr/dir3  //並設定mode2、rmdir-p, --parents   remove

50、linux shell命令,netstat,traceroute

1、netstat1) netstat [option]與路由 (route) 有關的參數說明:① -r:列出路由表(route table),功能如同 route 這個指令;② -n:不使用主機名稱與服務名稱,使用 IP 與 port number,如同 route -n與網路介面有關的參數:③ -a:列出所有的連線狀態,包括 tcp/udp/unix socket 等;④ -t:僅列出 TCP 封包的連線;⑤ -u:僅列出 UDP 封包的連線;⑥ -l:僅列出有在 Listen (監聽)

26、linux shell常用的幾個函數,diff

1、diff1)Namediff - find differences between two filesSynopsisdiff [options] from-file to-file DescriptionIn the simplest case, diff compares the contents of the two files from-file and to-file. 2)option    a single letter preceded by -, and the

29、linux shell常用的幾個函數,cut

1、說明cut [option] filescut -d'分隔字元' -f fields取出分欄位的檔案的某些特定欄位2、options-d:用來定義分隔字元,預設為tab鍵,與-f一起使用-f:需要取得哪個欄位,根據-d的分隔欄位-c:以字元 (characters) 為單位取出固定字元區間;-c後面的值指定從第幾個字元開始輸出。-c 和 -f 參數可以跟以下子參數:N 第N個字元或欄位N- 從第一個字元或欄位到檔案結束N-M 從第N個到第M個字元或欄位-M

38、linux shell常用函數,nice

1、優先順序從-20到19。越大,優先順序越低。2、nice 可以在建立進程時,為進程指定謙讓度(優先順序)的增量值,進程的優先順序的值是父進程SHELL的優先順序的值與我們所指定謙讓度的相加和。3、樣本1)nicenice -n 5  gaim &  //運行gaim程式,並為它指定謙讓度增量為5;nice  -n  謙讓度的增量值   程式2)renice 是通過進程ID(PID)來改變謙讓度,進而達到更改進程的優先順序。renice  謙讓度  PID參考【1】

51、linux shell命令,route,ifconfig

3、route1)route [-nee]route add [-net|-host] [網域或主機] netmask [mask] [gw|dev]route del [-net|-host] [網域或主機] netmask [mask] [gw|dev]2)option① -n:不使用協議或主機名稱,直接使用IP或port number;② -ee:使用更詳細的資訊來顯示增加 (add) 與刪除 (del) 路由的相關參數:① -net:表示後面接的路由為一個網域;②

shell命令wc,md5sum,basename

2、wc [-lwm]選項與參數:-l  :僅列出行;-w  :僅列出多少字(英文單字);-m  :多少字元;3、md5summd5sum [OPTION]... [FILE]...Print or check MD5 (128-bit) checksums.With no FILE, or when FILE is -, read standard input.  -b, --binary         read in binary mode  -c, --check         

49、linux shell命令,host,nslookup,dig

1、host1)DNS lookup utilityhost option {name} [server]使用 /etc/resolv.conf 中server來作為 DNS 伺服器的來源選擇2)option-a :列出該主機詳細的各項主機名稱設定資料3)樣本host www.google.com2、nslookup - query Internet name servers interactively。和host差不多。nslookup [-query=[type]]

43、linux shell命令,chmod

1、說明change file access permissionschmod [OPTION]... MODE[,MODE]... FILE...完整的數字許可權是4位元。但在一般情況下,都只帶入三位元字,其代表的就是“後三位元”的許可權設定。第一位元代表檔案或目錄的特殊性。4代表“suid;2代表“sgid”;1代表“沾滯元位-save text image”2、用法1)set-group-ID(SGID)使進程擁有了其所在組的存取權限。S,s(1)setuid用法: chmod u+s

28、linux shell常用的幾個函數,split

1、說明split [-bl] file PREFIX2、option參數:-b:後面可接欲分割成的檔案大小,可加單位,例如 b, k, m 等;-l:以行數來進行分割。PREFIX :代表前置字元的意思,可作為分割檔案的前導文字。3、樣本1)split -b 30b prime.cpp me2)split -l 20 prime.cpp3)cat xa* >> prime.cpp //這樣,使用重新導向,把分開的檔案合在一起。4)ll -k xa*-k   like

52、linux shell,尋找

1、whichwhich - shows the full path of (shell) commands.which [option]2、whereiswhereis - locate the binary, source, and manual page files for a commandwhereis [option] filename3、findfind - search for files in a directory hierarchyfind [option] [path]

32、linux shell,常用知識點

1、子程式僅會繼承父程式的環境變數,子程式不會繼承父程式的自訂變數。自訂變數:通過export申明成環境變數將環境變數轉成自訂變數:declare環境變數=全域變數自訂變數=地區變數 2、read [-pt] variable選項與參數:-p:後面可以接提示字元!-t:後面可以接等待的『秒數!』這個比較有趣~不會一直等待使用者啦!read -p "input name :" -t 30 name3、ulimit【2】ulimit - get and set user

65、shell,輸入輸出重新導向

1、重新導向相關檔案描述符1)檔案描述符① 0 標準輸入,/dev/stdin -> /proc/self/fd/0② 1 標準輸出,/dev/stdout -> /proc/self/fd/1③ 2 標準錯誤輸出,/dev/stderr -> /proc/self/fd/22)重新導向① > 是1>的簡寫② < 是0<的簡寫③ > 將命令輸出寫入到檔案或裝置(例如印表機)中,而不是寫在命令提示字元視窗中。④ >>

69、linux shell常用函數,tail

1、tail - output the last part of files tail [OPTION][+/-num]... [FILE]...2、option① -f,:output appended data as the file grows;② -s, :with -f, sleep for S seconds (default 1.0) between iterations. ③ -n, :output the last N lines, instead of the last 10

74、shell 小知識兩點,提示符,特殊變數,export

1、關於提示符,特殊變數1)Bash有兩級提示符。第一級提示符是經常見到的Bash在等待命令輸入時的情況,預設值是$符號,PS1為變數值。第二級提示符是當Bash為執行某條命令需要使用者輸入更多資訊時顯示的,預設為>,變數值為PS2。2)Bash有一些特殊變數,能控制shell以不同的方式工作。例如,變數noclobber能防止在重新導向輸出時意外地覆蓋一個檔案。通過set命令可以設定noclobber變數的有效或無效。set命令有兩個參數:一個是指定變數開(on)或關(off)的選項,一

71、shell中crontab中執行命令的特殊性,/bin/sh

1、在執行crontab命令時,與直接在shell中執行程式有點區別,要引起注意。如ps aux | grep file直接在shell中執行,則搜尋範圍只在top中當前執行的進程,而寫入crontab執行,則crontab中所有語句也成為了搜尋範圍。count = `ps aux | grep file | wc -l`2、寫的指令碼前面加/bin/sh如果要用給指令碼執行許可權的話,第一行必須聲明該指令碼由什麼來解釋。比如:#! /usr/local/php/bin/php#!

總頁數: 301 1 .... 70 71 72 73 74 .... 301 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.