shell簡單使用

2022-07-30 23:27:16 字數 366 閱讀 3090

按上和下可以遍歷最近輸入的命令

後進入增量模式

這個可以檢視之前的2000條歷史

$ vim ~/.bash_history

先執行command1,不管command1是否出錯,接下來執行command2

command1;command2

只有當command1正確執行完畢後,才執行command2

command1 & command2

「>」為輸出重定向符,可以將命令的輸出結果儲存到檔案中,「>>」和「>」作用類似,

不同的是「>」為新建或者重寫乙個檔案,而「>>」為在檔案的尾部追加內容。

SQLite的shell簡單使用

解壓後得到 sqlite3.exe1 1 建立資料庫 c sqlite3 sqlite3.exe dbname.db 2 建立資料表 sqlite create table users userid varchar 20 primary key,age int,birthday datetime 3...

shell 陣列的簡單使用

ipts 16.0.0.1 16.0.0.2 16.0.0.3 使用 進行定義,裡面的元素都需要空格進行分割。root izbp1e44zna0rzyna76eszz lvhuiqi ipts 16.0.0.1 16.0.0.2 16.0.0.3 注意 如果直接獲取itps變數,只能獲取陣列中第乙個...

Kafka集群的簡單使用(shell)

kafka本地集群搭建完成,介紹在shell中進行簡單使用,並記錄。cd opt zookeeper bin zkserver.sh startcd opt kafka bin kafka server start sh config server.properties 表示後台執行,這樣就可以啟動...