0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

シェルスクリプト リスト

0
Posted at

リストはパイプラインが改行や ; & && || で区切って並べられたもの。

list1
# cd と ls の2つのパイプラインが ; で区切られ1つのリストになっている
cd /home/my; ls -l
list2
# ; で区切られている場合、左から右に順番にフォアグラウンドで実行される
cd /home/my; cd /home/you; cd /home/who
list3
# & で区切られている場合、左から右に順番にバックグラウンドで実行される
# 最後のパイプラインもバックグラウンドにする場合は、&で終端すること
cd /home/my& cd /home/you& cd /home/who&
list4
# コマンドはパイプラインかつリスト
ls -alt

# リスト(コマンドでもパイプラインでもない)
cd /home/my; ls -alt

# グループコマンドにするとパイプラインかつリストになる
{ cd /home/my; ls -alt; }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?