6個你可能不熟悉的Linux實用命令!
來源:網路
Linux是一個強大的作業系統,這篇文章收集了6個你可能沒有用過的Linux命令,但卻相當的有用,供大家參考。
1)bc
這個Linux命令用於精度比較高的數學運算。如:開平方根等。下面利用bc命令寫個指令碼(檔名:sqrt)
#!/bin/bash if [ $ then echo 'Usage: sqrt number' exit 1 else echo -e "sqrt($1)\nquit\n" | bc -q -i fi
接著,可使用這個指令碼進行平方根運算:
[hchen@RHELSVR5]$ ./sqrt 36 6 [hchen@RHELSVR5]$ ./sqrt 2.0000 1.4142 [hchen@RHELSVR5]$ ./sqrt 10.0000 3.1622
2)split
如果你的檔案很大,卻接到命令要把它分割成小檔案,那麼這個命令就派上用場了。
[hchen@RHELSVR5 applebak]# ls -l largefile.tar.gz -rw-r--r-- 1 hchen hchen 436774774 04-17 02:00 largefile.tar.gz [hchen@RHELSVR5 applebak]# split -b 50m largefile.tar.gz LF_ [hchen@RHELSVR5]# ls -l LF_* -rw-r--r-- 1 hchen hchen 52428800 05-10 18:34 LF_aa -rw-r--r-- 1 hchen hchen 52428800 05-10 18:34 LF_ab -rw-r--r-- 1 hchen hchen 52428800 05-10 18:34 LF_ac -rw-r--r-- 1 hchen hchen 52428800 05-10 18:34 LF_ad -rw-r--r-- 1 hchen hchen 52428800 05-10 18:34 LF_ae -rw-r--r-- 1 hchen hchen 52428800 05-10 18:35 LF_af -rw-r--r-- 1 hchen hchen 52428800 05-10 18:35 LF_ag -rw-r--r-- 1 hchen hchen 52428800 05-10 18:35 LF_ah -rw-r--r-- 1 hchen hchen 17344374 05-10 18:35 LF_ai
反而來,合併也只需要簡單的合併就行,如:
[hchen@RHELSVR5]# cat LF_* >largefile.tar.gz
3)pgrep
pgrep名字前有個p,可以猜想它可能和grep有關,確實這是程式相關的grep命令。不過,這個命令主要是用來列舉程式ID的。如:
$ pgrep -u hchen 22441 22444
這個命令相當於:
ps -ef | egrep '^hchen' | awk '{print $2}'
4)nl
nl命令其它和cat命令很像,只不過它會打上行號。如下所示:
[hchen@RHELSVR5 include]# nl stdio.h | head -n 10 1 /* Define ISO C stdio on top of C++ iostreams. 2 Copyright (C) 1991,1994-2004,2005,2006 Free Software Foundation, Inc. 3 This file is part of the GNU C Library. 4 The GNU C Library is free software; you can redistribute it and/or 5 modify it under the terms of the GNU Lesser General Public 6 License as published by the Free Software Foundation; either 7 version 2.1 of the License, or (at your option) any later version. 8 The GNU C Library is distributed in the hope that it will be useful,
5)ldd
這個命令,用來可執行檔案所使用了動態連結庫。如:
[hchen@RHELSVR5 ~]# ldd /usr/bin/java linux-gate.so.1 => (0x00cd9000) libgij.so.7rh => /usr/lib/libgij.so.7rh (0x00ed3000) libgcj.so.7rh => /usr/lib/libgcj.so.7rh (0x00ed6000) libpthread.so.0 => /lib/i686/nosegneg/libpthread.so.0 (0x00110000) librt.so.1 => /lib/i686/nosegneg/librt.so.1 (0x009c8000) libdl.so.2 => /lib/libdl.so.2 (0x008b5000) libz.so.1 => /usr/lib/libz.so.1 (0x00bee000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00aa7000) libc.so.6 => /lib/i686/nosegneg/libc.so.6 (0x0022f000) libm.so.6 => /lib/i686/nosegneg/libm.so.6 (0x00127000) /lib/ld-linux.so.2 (0x00214000)
6)col
這個命令,能將man檔案轉成純文字檔案。如下示例:
# PAGER=cat # man less | col -b > less.txt
這6個Linux命令,你是否用過,歡迎留言交流哈!
相關文章
- 十個你可能沒用過的Linux命令Linux
- 你可能不熟悉的JS總結JS
- 十個你可能沒用過的Linux命令(點評版)Linux
- 十個你可能沒用過的Linux命令(美化版)Linux
- 你可能不太會用的10個Git命令Git
- 6個超實用的Sudo命令使用技巧
- 20個你(可能)不知道的Git命令Git
- 6個有趣的Linux命令Linux
- 最最實用的30個Linux命令!Linux
- 透過6個示例帶你掌握Linux sed命令!Linux
- 6個你可能從未使用過的Python技巧!Python
- 5個你可能會忽略的有用命令列工具命令列
- 工作中5個實用的Linux命令Linux
- 酷炫:6個有趣的Linux命令Linux
- 實用的Linux命令Linux
- Parallel.For 你可能忽視的一個非常實用的過載方法Parallel
- 每天一個Linux命令(6):rmdir命令Linux
- 每天一個 Linux 命令(6):rmdir 命令Linux
- 每天一個linux命令(6):rmdir 命令Linux
- Linux中11個比較實用的命令列Linux命令列
- 8 個實用的 Linux netcat 命令示例Linux
- Linux必學的60個命令(6)-其他Linux
- 用CPU來加速你的Linux命令Linux
- Linux 中 17 個 tar 命令實用示例Linux
- 你與其他程式設計師可能常犯的 6 個錯誤程式設計師
- mac技巧|你可能不瞭解的實用操作~Mac
- word七個經常被忽略的實用技巧,第一個你可能就不知道!
- Linux 下 cut 命令的 4 個基礎實用的示例Linux
- 你應該知道的16個linux命令Linux
- 29 個你必須知道的 Linux 命令Linux
- 實用的Linux命令列技巧Linux命令列
- 11 個鮮為人知卻超實用的 Linux 命令!Linux
- 15個Linux Grep命令使用例項(實用、常用)Linux
- 5個相見恨晚的Linux命令,每一個都非常實用Linux
- 25個實用的VMware ESXi命令
- 用於Arch Linux的6個AUR助手Linux
- 實用處理字串的linux命令字串Linux
- 超實用的 Linux 高階命令!Linux