There is a way using CSS! If you set your width depending on the parent container you can set the…
grep -rnw '/path/to/somewhere/' -e 'pattern' -r or -R is recursive, -n is line number, and -w stands for match the whole word. -l (lower-case L) can…
This snippet will remove duplicate lines from text file: awk '!seen[$0]++' filename It will display the results on screen. If…
Easiest way to export your database is through phpMyAdmin. With few clicks you can get database export and then use…
Put this code into a .sh file, add executable permissions to it and add it to root user’s crontab. See…
Put this code into a .sh file, add executable permissions to it and add it to root user's crontab. See…
Facebook has a somehow hidden way for addding applications as page tab. To do that, you need to enter the…
$ php -i |grep php\.ini Also: $ php --ini This will also show all extra *.ini files loaded (usually hanging…
Execute in the directory you want to purge .svn files from find . -type d -name .svn -exec rm -rf…