मैं पृष्ठभूमि में शेल स्क्रिप्ट कैसे चला सकता हूं?
मैं पृष्ठभूमि में शेल स्क्रिप्ट कैसे चला सकता हूं?
जवाबों:
आप जो चाहते हैं, उसके आधार पर, बस कमांड के अंत में एक जोड़ें
script.sh &
command &
यदि आप इसे किसी टर्मिनल में चला रहे हैं, और आप तब टर्मिनल को बंद करना चाहते हैं, तो nohup का उपयोग करें या विस्थापित करें
nohup
nohup script.sh &
अस्वीकार करना
script &
disown
यदि वह नहीं है जो आप के बाद कर रहे हैं, तो कृपया अपने प्रश्न में अधिक विशिष्ट हो।
htop
सीपीयू उपयोग को देखने के लिए चलना चाहता हूं , लेकिन समस्या यह है कि 1 स्क्रिप्ट कंसोल को आउटपुट बनाने के लिए शुरू होती है और ऐसा लगता है कि अन्य कार्यों को रोकें (दूसरी स्क्रिप्ट चलाएं htop
)।
आप बस स्क्रीन स्विच कर सकते हैं और उस 2 वीं स्क्रीन पर अपनी स्क्रिप्ट चला सकते हैं। जब स्क्रिप्ट 2 पर शुरू होती है, तो 1 पर वापस जाएँ और जो चाहें करें। 2 डी स्क्रीन अतिरिक्त "टर्मिनल विंडो" के रूप में पृष्ठभूमि में होगी। और यह तब भी प्रसंस्करण बंद नहीं करेगा जब आप 1 स्क्रीन पर मधुमक्खी पालन करते समय अपने ssh कनेक्शन को बंद कर देंगे।
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-session-screen
यदि आप चाहते हैं कि स्क्रिप्ट टर्मिनल को बंद करने के बाद बनी रहे, तो दूसरा विकल्प उपयोग करना है setsid
:
setsid script.sh
के बीच मतभेदों के बारे में अधिक जानकारी के लिए nohup
, disown
, &
और setsid
: nohup के बीच अंतर, त्याग देते और और