My links
Google search
-
Recent Posts
Recent Comments
- velda.ebel on About this blog
- Benjamin E. Nichols on About this blog
- http://babyhousetoys.com/cheap on About this blog
- http://sealmedica.com/onsale on About this blog
- velda.ebel on About this blog
Archives
- November 2017
- October 2017
- July 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- September 2016
- June 2016
- May 2016
- December 2015
- November 2015
- August 2015
- May 2015
- April 2015
- March 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
Categories
Meta
Tag Archives: commands
MySQL commands
Some (often used) commands for MySQL DB…. Logging into DB : # mysql -u root -p How to show colons in table named “users” : mysql> show columns from users; How to show only some fields from table “users” : … Continue reading
Linux commands, part 7
How to copy/move a large number of files from one folder to another, since Linux kernel has a inbuilt limit for commands such as “mv”, “cp”, “rm”… Example : # mv -f * /folder1/folder2/ bash: /bin/mv: Argument list too long … Continue reading
Some neat Unix commands
How to delete a non-empty Unix folder (without going into it and deleting all the files) : # rm -r folder-name Command rmdir (which is standard for such actions) deletes only empty folders… How to untar a file : # … Continue reading
Some neat Linux commands, part 6
When you need to transfer data from one server to another, it can be done in many ways. Here are some of them : 1. scp – secure copy – it does not keep the owner/group info for the file, … Continue reading
Some neat Linux commands, part 3
A neat command that enables you to search the whole folder, or even a whole server, searching for a key word in file (not in the filename, but in the file itself) : # grep -H -r “key-word” /home /home/user11/test1:nmhsdav,jhvfjh,gkey-word … Continue reading