ฉันจะรันเชลล์สคริปต์ในเบื้องหลังได้อย่างไร
ฉันจะรันเชลล์สคริปต์ในเบื้องหลังได้อย่างไร
คำตอบ:
ขึ้นอยู่กับสิ่งที่คุณต้องการเพียงเพิ่ม & ไปที่ท้ายคำสั่ง
script.sh &
command &หากคุณกำลังเรียกใช้งานในเทอร์มินัลและคุณต้องการปิดเทอร์มินัลแล้วให้ใช้ nohup หรือ disown
nohup
nohup script.sh &บอกปัด
script &
disownหากนั่นไม่ใช่สิ่งที่คุณเป็นอยู่โปรดระบุให้ชัดเจนในคำถามของคุณ
htopเพื่อดูการใช้งาน CPU แต่ปัญหาคือสคริปต์ตัวที่ 1 เริ่มสร้างเอาต์พุตไปยังคอนโซลและดูเหมือนว่าจะป้องกันการกระทำอื่น ๆ (รันสคริปต์ตัวที่สองรันhtop)
                    คุณสามารถสลับหน้าจอและเรียกใช้สคริปต์ของคุณบนหน้าจอที่ 2 เมื่อสคริปต์เริ่มต้นในวันที่ 2 ให้สลับกลับไปที่อันดับ 1 และทำสิ่งที่คุณต้องการ หน้าจอที่สองจะอยู่ในพื้นหลังเป็น "หน้าต่างเทอร์มินัล" พิเศษ และจะไม่หยุดการประมวลผลแม้ว่าคุณจะปิดการเชื่อมต่อ ssh ของคุณในขณะที่ผึ้งที่หน้าจอที่ 1
screen --help
Use: screen [-opts] [cmd [args]]
 or: screen -r [host.tty]
Options:
-4            Resolve hostnames only to IPv4 addresses.
-6            Resolve hostnames only to IPv6 addresses.
-a            Force all capabilities into each window's termcap.
-A -[r|R]     Adapt all windows to the new display width & height.
-c file       Read configuration file instead of '.screenrc'.
-d (-r)       Detach the elsewhere running screen (and reattach here).
-dmS name     Start as daemon: Screen session in detached mode.
-D (-r)       Detach and logout remote (and reattach here).
-D -RR        Do whatever is needed to get a screen session.
-e xy         Change command characters.
-f            Flow control on, -fn = off, -fa = auto.
-h lines      Set the size of the scrollback history buffer.
-i            Interrupt output sooner when flow control is on.
-l            Login mode on (update /var/run/utmp), -ln = off.
-ls [match]   or -list. Do nothing, just list our SockDir [on possible matches].
-L            Turn on output logging.
-m            ignore $STY variable, do create a new screen session.
-O            Choose optimal output rather than exact vt100 emulation.
-p window     Preselect the named window if it exists.
-q            Quiet startup. Exits with non-zero return code if unsuccessful.
-r [session]  Reattach to a detached screen process.
-R            Reattach if possible, otherwise start a new session.
-s shell      Shell to execute rather than $SHELL.
-S sockname   Name this session <pid>.sockname instead of <pid>.<tty>.<host>.
-t title      Set title. (window's name).
-T term       Use term as $TERM for windows, rather than "screen".
-U            Tell screen to use UTF-8 encoding.
-v            Print "Screen version 4.01.00devel (GNU) 2-May-06".
-wipe [match] Do nothing, just clean up SockDir [on possible matches].
-x            Attach to a not detached screen. (Multi display mode).
-X            Execute <cmd> as a screen command in the specified session.ctrl+ a, cจะสร้างใหม่ "หน้าต่าง" ในเซสชั่นหน้าจอที่ใช้งานของคุณ คุณสามารถสลับระหว่างหน้าต่างหลายบาน (ตามที่ระบุใน Ansgar) ด้วยctrl+ a, nสำหรับหน้าต่างถัดไปและctrl+ a, pสำหรับหน้าต่างก่อนหน้า
ctrl+ a, "จะให้รายชื่อของทุกหน้าต่างที่เปิดอยู่ของคุณ
เพิ่มเติมได้ที่: https://superuser.com/questions/476709/quickly-switching-between-virtual-sessions-screen
หากคุณต้องการให้สคริปต์ยังคงอยู่หลังจากปิดเทอร์มินัลตัวเลือกอื่นคือใช้setsid:
setsid script.shสำหรับข้อมูลเพิ่มเติมเกี่ยวกับความแตกต่างระหว่างnohup, disown, &และsetsid: ความแตกต่างระหว่าง nohup, บอกปัดและ &