बैकग्राउंड में शेल स्क्रिप्ट कैसे चलाएं?


जवाबों:


93

आप जो चाहते हैं, उसके आधार पर, बस कमांड के अंत में एक जोड़ें

script.sh &
command &

यदि आप इसे किसी टर्मिनल में चला रहे हैं, और आप तब टर्मिनल को बंद करना चाहते हैं, तो nohup का उपयोग करें या विस्थापित करें

nohup

nohup script.sh &

अस्वीकार करना

script &
disown

यदि वह नहीं है जो आप के बाद कर रहे हैं, तो कृपया अपने प्रश्न में अधिक विशिष्ट हो।


आपका स्वागत है
पैंथर

क्या होगा यदि उदाहरण के लिए मुझे 2 स्काइप्स चलाने की आवश्यकता है और फिर मैं htopसीपीयू उपयोग को देखने के लिए चलना चाहता हूं , लेकिन समस्या यह है कि 1 स्क्रिप्ट कंसोल को आउटपुट बनाने के लिए शुरू होती है और ऐसा लगता है कि अन्य कार्यों को रोकें (दूसरी स्क्रिप्ट चलाएं htop)।
मर्ग्लोम

यदि स्क्रिप्ट में प्रिंट स्टेटमेंट हैं, तो क्या वे मेरे टर्मिनल पर प्रदर्शित होंगे?
चार्ली पार्कर

2

आप बस स्क्रीन स्विच कर सकते हैं और उस 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


1

यदि आप चाहते हैं कि स्क्रिप्ट टर्मिनल को बंद करने के बाद बनी रहे, तो दूसरा विकल्प उपयोग करना है setsid:

setsid script.sh

के बीच मतभेदों के बारे में अधिक जानकारी के लिए nohup, disown, &और setsid: nohup के बीच अंतर, त्याग देते और और

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.