學習筆記之Linux / Shell

shell(計算機殼層)_百度百科html

  • http://baike.baidu.com/subview/849/15831672.htm

Shell (computing) - Wikipedia, the free encyclopediapython

  • http://en.wikipedia.org/wiki/Shell_(computing)
iSeries QSHELL - Wikipedia
  • http://en.wikipedia.org/wiki/ISeries_QSHELL
  • According to IBM, QSHELL is a 「UNIX-like」 interface built over OS/400. The commands you issue point to programs in a 「QSHELL」 library. To use QSHELL, key STRQSH or QSH on an iSeries command line.
  • PASE is a 「real」 UNIX—it is actually AIX. It looks similar to QSHELL, but doesn’t have some of the limitations built into QSHELL. To use PASE, CALL QP2TERM.
AIX_百度百科 
  • http://baike.baidu.com/view/349664.htm
  • AIX(Advanced Interactive eXecutive)是IBM基於AT&T Unix System V開發的一套類UNIX操做系統,運行在IBM專有的Power系列芯片設計的小型機硬件系統之上。

面試總結之Linux/Shell - 浩然119 - 博客園linux

學習筆記之Linux開發(C語言) - 浩然119 - 博客園git

介紹 Linux 文件系統程序員

Linux桌面進化史github

命令行的藝術面試

Unix 激盪 50 年:驅動 Android、iOS 的操做系統是如何從失敗開始的?算法

進程調度,一個調度器的自白shell


【ZZ】Linux經常使用指令 - 浩然119 - 博客園編程

Linux經常使用命令全稱 - 程序員大咖

  • https://mp.weixin.qq.com/s/AMnlM75hAMdrSCURZ4QarQ
  • https://www.cnblogs.com/wangcp-2014/p/6539035.html

176條DevOps人員經常使用的linux命令速查表 - 程序員大咖

  • https://mp.weixin.qq.com/s/iQBmEzsGxAx4FJq0SBH6Gg

97條 Linux 經常使用命令總結 - 機器學習算法與Python學習

  • https://mp.weixin.qq.com/s/RK_bqt5ihi3jAn9-i1qKtg
  • https://zhuanlan.zhihu.com/p/36093355

圖解 Linux 經常使用命令

如何查看Linux系統的狀態信息?

解放你的雙手,一個命令幫你減負 - Linux學習

  • https://mp.weixin.qq.com/s/EA3MbENrq8jfj0bD40ITNw

如何用 Linux 技巧大大提升工做效率? - CSDN

  • https://mp.weixin.qq.com/s/wZ7tqB8EDEduQE-2gtUdFA

工做中經常使用到的Linux命令

Linux最經常使用命令

Linux 實用指令大全

『一網打盡』 Bash 經常使用命令

從命令行同時移動多種文件類型的小技巧

軟件測試工程師的 Linux 十大場景命令使用

一個錄製並回放Linux終端會話的命令

3 種在Linux命令行查看圖像的方法

爲什麼killall有時找不到你的進程?killall是幹什麼的?

Linux下如何拆分大的日誌文件?

幾個命令瞭解ELF文件的「祕密」

爲何執行本身的程序要在前面加./


vim三種模式下的小技巧 - Linux學習

  • https://mp.weixin.qq.com/s/XgKK9kyuaBwF8x4caBULYQ

誰說 Vim 很差用?送你一個五彩斑斕的編輯器!

Coding效率提高,15張 Vim 速查表奉上!

8個技巧讓Vim菜鳥變專家


學習筆記之Shell腳本的輸出重定向 - 浩然119 - 博客園

學習筆記之Linux Shell腳本教程:30分鐘玩轉Shell腳本編程 - 浩然119 - 博客園

編寫可靠Linux shell腳本的八個建議

Linux Shell的18條經常使用命令整理 - Linux學習

  • https://mp.weixin.qq.com/s/mNSXpKzMpMcP3V6Rf6Nzcg

10 個實戰與面試【經常使用 Shell 腳本】編寫

Linux Shell 基礎 -- 總結幾種括號、引號的用法

一份Linux shell「聖經」收好


經常使用命令

Linux 命令大全 | 菜鳥教程

bash - enter bash command line from virtual environment (e.g. conda)

bg - Runs jobs in the background

cat 文件名 輸出文件內容到基本輸出( 屏幕 or 加>fileName 到另外一個文件)
cb 格式化 源代碼
cd 進入目錄
chmod //change mode,改變文件的權限
  • chmod +x test.sh
    • set test.sh to be executable
clear - clear the terminal screen
cp copy
date 當前的時間和日期
du 查看磁盤空間情況
echo 顯示指定文本
echo $abc 在 變量賦值以後,只需在變量前面加一個$去引用.
find - Linux find命令用來在指定目錄下查找文件。
grep - search text

hostname

  • FunctionGet or set hostname or DNS domain name
  • Syntaxhostname [-v] [-a] [--alias] [-d] [--domain] [-f] [--fqdn] [-A] [--all-fqdns] [-i] [--ip-address] [-I] [--all-ip-addresses] [--long] [-s] [--short] [-y] [--yp] [--nis]

htop -u my_username

less

  • https://en.wikipedia.org/wiki/Less_(Unix)
  • less is a terminal pagerprogram on UnixWindows, and Unix-like systems used to view (but not change) the contents of a text file one screen at a time. It is similar to more, but has the extended capability of allowing both forward and backward navigation through the file. Unlike most Unix text editors/viewers, less does not need to read the entire file before starting, resulting in faster load times with large files.
lint 語法檢查程序
ln
ls dir
  • ls -l my_link.txt
    • verify the symlink
man help
mkdir 建立目錄
more 顯示文件
more type
mv 改文件名 /移動文件
ps 查看當前進程情況
pushd and popd
pwd 顯示目錄路徑命令
rm -rf 刪除非空文件夾
rmdir 刪除目錄
who 你的用戶名和終端類型
定義 變量 name=abc? (bash/pdksh) || set name = abc (tcsh)

How to extract .tar.gz Files ?

How to view the contents of tar.gz file without extracting it ?

How to hide and view hidden files / directories ?

How to view system environment variables ?

  • $ env

How to add and view path environment variable ?

  • $ export PATH=~/folder/:${PATH}
  • $ echo $PATH

How to add and use alias ?

  • $ alias test=~/bin/test
  • $ test

How to find and kill process ?

How to reverse-i-search back to search commands in history ?

  • Ctrl + r

How to check memory usage ?

相關文章
相關標籤/搜索