shコマンド
1532 ワード
shコマンド
shコマンドはshellコマンド言語解釈器であり、コマンドを実行して標準入力から読み出すか、ファイルから読み出す.ユーザーがコマンドを入力し、カーネルとコミュニケーションします!Bourne Again Shell(すなわちbash)は、LinuxシステムにおけるデフォルトのShellであるフリーソフトウェア財団(GNU)が開発したShellである.BashはBourne Shellと互換性があるだけでなく,C Shell,Korn Shellなどの利点を継承している.
構文
オプション
≪インスタンス|Instance|emdw≫
-xオプショントラッキングスクリプトを使用してshellスクリプトをデバッグし、実行された各ローのコマンドと現在のステータスを印刷します.
回転:http://man.linuxde.net/sh
転載先:https://blog.51cto.com/lixin752299/2062165
shコマンドはshellコマンド言語解釈器であり、コマンドを実行して標準入力から読み出すか、ファイルから読み出す.ユーザーがコマンドを入力し、カーネルとコミュニケーションします!Bourne Again Shell(すなわちbash)は、LinuxシステムにおけるデフォルトのShellであるフリーソフトウェア財団(GNU)が開発したShellである.BashはBourne Shellと互換性があるだけでなく,C Shell,Korn Shellなどの利点を継承している.
構文
bash [options] [file]
オプション
-c string: -c 。
-i: 。
-n: shell 。
-x: shell 。
≪インスタンス|Instance|emdw≫
-xオプショントラッキングスクリプトを使用してshellスクリプトをデバッグし、実行された各ローのコマンドと現在のステータスを印刷します.
[root@AY1307311912260196fcZ satools]# sh -x check_ssh_login.sh
+ DEFINE=30
+ cat /var/log/secure
+ awk '/Failed/ {++ip[$(NF-3)]} END {for (i in ip) print i"="ip[i]}'
++ cat /root/satools/black.txt
+ for i in '`cat /root/satools/black.txt`'
++ echo 121.42.0.16=1427
++ awk -F= '{print $1}'
+ IP=121.42.0.16
++ echo 121.42.0.16=1427
++ awk -F= '{print $2}'
+ NUM=1427
+ '[' 1427 -gt 30 ']'
+ grep 121.42.0.16 /etc/hosts.deny
+ '[' 1 -gt 0 ']'
+ echo sshd:121.42.0.16
+ echo vsftpd:121.42.0.16
+ for i in '`cat /root/satools/black.txt`'
++ echo 121.42.0.72=276
++ awk -F= '{print $1}'
+ IP=121.42.0.72
++ awk -F= '{print $2}'
++ echo 121.42.0.72=276
+ NUM=276
+ '[' 276 -gt 30 ']'
+ grep 121.42.0.72 /etc/hosts.deny
+ '[' 1 -gt 0 ']'
+ echo sshd:121.42.0.72
+ echo vsftpd:121.42.0.72
回転:http://man.linuxde.net/sh
転載先:https://blog.51cto.com/lixin752299/2062165