<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Multi-tasking from the Unix shell (vim and mysql cli users, crowd around)</title>
	<link>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/</link>
	<description>A Web Development Company Specializing In Standard-Based Web Design and the CakePHP Framework.</description>
	<pubDate>Sun, 05 Feb 2012 10:22:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: chaz</title>
		<link>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-22351</link>
		<dc:creator>chaz</dc:creator>
		<pubDate>Sun, 03 Apr 2011 05:30:19 +0000</pubDate>
		<guid>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-22351</guid>
		<description>You can also continue a process in the background by using Control+Z and "bg", e.g.:

$ cp big_file /some/where/else/.
(Control+Z)
[1]+  Stopped   /bin/cp big_file /some/where/else
$ bg
[1]+ /bin/cp big_file /some/where/else &#38;

Control+Z by itself stops the process, but bg allows it to continue in the background.  You'll want to make sure to redirect stderr and stdout for any command you run in the background, otherwise it can spew stuff all over your screen if you're e.g. editing a file in vim.</description>
		<content:encoded><![CDATA[<p>You can also continue a process in the background by using Control+Z and &#8220;bg&#8221;, e.g.:</p>
<p>$ cp big_file /some/where/else/.<br />
(Control+Z)<br />
[1]+  Stopped   /bin/cp big_file /some/where/else<br />
$ bg<br />
[1]+ /bin/cp big_file /some/where/else &amp;</p>
<p>Control+Z by itself stops the process, but bg allows it to continue in the background.  You&#8217;ll want to make sure to redirect stderr and stdout for any command you run in the background, otherwise it can spew stuff all over your screen if you&#8217;re e.g. editing a file in vim.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: limewire</title>
		<link>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-12952</link>
		<dc:creator>limewire</dc:creator>
		<pubDate>Fri, 30 Apr 2010 03:09:23 +0000</pubDate>
		<guid>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-12952</guid>
		<description>shoot nice stuff bro.</description>
		<content:encoded><![CDATA[<p>shoot nice stuff bro.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ohcibi</title>
		<link>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-11336</link>
		<dc:creator>ohcibi</dc:creator>
		<pubDate>Wed, 10 Feb 2010 23:24:08 +0000</pubDate>
		<guid>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-11336</guid>
		<description>Vim is able to display multible tabs. Just try :tabnew :tabnext and :tabprev for example

Also if you need on shell with an open vim session and another shell with something else you really should open just two sessions of putty (as I would open another terminal in *nix). Your OS is already able to do multitasking so just do it.</description>
		<content:encoded><![CDATA[<p>Vim is able to display multible tabs. Just try :tabnew :tabnext and :tabprev for example</p>
<p>Also if you need on shell with an open vim session and another shell with something else you really should open just two sessions of putty (as I would open another terminal in *nix). Your OS is already able to do multitasking so just do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elarth</title>
		<link>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-5683</link>
		<dc:creator>elarth</dc:creator>
		<pubDate>Sun, 28 Jun 2009 02:02:31 +0000</pubDate>
		<guid>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-5683</guid>
		<description>Wow never really know about this. But sometimes I wish do have something like this.

A Question: Could I stop a running shell? Something like this:

$ cd /long/and/painful/path
$ bash
$ pwd
/long/and/painful/path
$ 
$ cd /tmp
$ fg 1
$ pwd
/long/and/painful/path

(it does not work, but is there a way to do this?)</description>
		<content:encoded><![CDATA[<p>Wow never really know about this. But sometimes I wish do have something like this.</p>
<p>A Question: Could I stop a running shell? Something like this:</p>
<p>$ cd /long/and/painful/path<br />
$ bash<br />
$ pwd<br />
/long/and/painful/path<br />
$<br />
$ cd /tmp<br />
$ fg 1<br />
$ pwd<br />
/long/and/painful/path</p>
<p>(it does not work, but is there a way to do this?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lee</title>
		<link>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-4621</link>
		<dc:creator>lee</dc:creator>
		<pubDate>Thu, 18 Dec 2008 17:04:12 +0000</pubDate>
		<guid>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-4621</guid>
		<description>@verbal - thanks for the comment.  Screen would be another conversation.  But, yes, you could either a) create multiple screens and open a file in each  b) create 1 screen and follow my samples above. 

But, yes, screen would allow you to not lose anything if you lose connection.  Good advice.</description>
		<content:encoded><![CDATA[<p>@verbal - thanks for the comment.  Screen would be another conversation.  But, yes, you could either a) create multiple screens and open a file in each  b) create 1 screen and follow my samples above. </p>
<p>But, yes, screen would allow you to not lose anything if you lose connection.  Good advice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: verbal</title>
		<link>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-4620</link>
		<dc:creator>verbal</dc:creator>
		<pubDate>Thu, 18 Dec 2008 17:01:16 +0000</pubDate>
		<guid>http://blog.loadsys.com/2008/12/18/multi-tasking-from-the-unix-shell-vim-and-mysql-cli-users-crowd-around/#comment-4620</guid>
		<description>What abount when you lose connection? Ain't screen a better solution?</description>
		<content:encoded><![CDATA[<p>What abount when you lose connection? Ain&#8217;t screen a better solution?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

