Aetles + commandline   3

» Linuxaria – Everything about GNU/Linux and Open source How to run commands in the background
Suppose you have a long-running task (for example, compiling a large program) that you need to run, but you also want to get some other work done. Linux lets you start a task in the background and keep on doing other things from the command prompt.

We will see in this article how to send commands in the background, then return them to the foreground, and make sure that also closing the current shell or terminal the process doesn’t remains tied to the session but continue to work.

An alternative to these command is using screen, as read in a former article, but now let’s seethe command bg and the spacial character &
linux  terminal  commandline 
january 2012 by Aetles
Command line mysql | Acquia
I am not having any trouble if I always use /Applications/acquia-drupal/mysql/bin/mysql -u$username -p$password $dbname when trying to work with a database on the DAMP stack and remember to use /usr/local/bin/mysql/bin/mysql ( the default) at other times.
acquiadrupal  damp  mysql  commandline 
february 2011 by Aetles
How do you untar multiple .tar.gz files? - Web Hosting Talk
find will find files recursively in sub directories, if any. If that's what you want, great. If you only want files in the current directory, you can use:

for i in *.tar.gz; do tar xzvf $i; done
tar  commandline  terminal  ssh 
october 2010 by Aetles

Copy this bookmark:



description:


tags: