LoginSignup
1
1

More than 5 years have passed since last update.

すべてのscreenを消す One liner

Posted at

勉強がてらOne linerでやりたくなったのでやってみる。

screen -ls | grep Detached | awk '{ print $1}'| xargs -L 1 -I % screen -S % -X quit

他にもあった。
http://stackoverflow.com/questions/14447131/kill-all-detached-screen-sessions

screen -ls | grep pts | cut -d. -f1 | awk '{print $1}' | xargs kill
1
1
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
1
1