Posted on November 12th, 2008 by linux
Search engine is very powerful tool but not just for search but also for beginner hacking. Some mysqladmin web tools are indexed with google which make them available for search. By searching with keywords:
“phpMyAdmin” “running on” inurl:”main.php” site:com
“phpMyAdmin” “running on” inurl:”main.php” site:org
or
“phpMyAdmin” “running on” inurl:”main.php” site:net
etc.
we can get a results for all google indexed mysqladmin. Since not all of them are secured by the password you can get lucky and find some which are free to use.
Filed under: Fun and Linux | No Comments »
Posted on November 2nd, 2008 by linux
Here is a simple example on how to display date/watch with simple bash command:
$ while true; do clear; date; sleep 1; done
Filed under: Administration, Bash, Commands, Linux, Scripting | No Comments »
Posted on October 19th, 2008 by linux
We all know how to list non-hidden and hidden files with ls command on shell. However I could not find out how to list only hidden files ( starting with “.” ) with only ls command. One, but not complete solution could by to using TAB key. For example ls . and pressing 2xTAB will display only hidden files. It seem that we need to call for help grep command:
ls -a mydir/ | grep '^\.'
If anyone knows how to do this trick with only ls command please let me know.
Filed under: Commands, Linux | No Comments »