1 | mysql> prompt (\u@\h) [\d]> |
persistent in bashrc:
1 | export MYSQL_PS1='(\u@\h) [\d]> ' |
Like what you read?
You can hire me or make a donation via PayPal!
1 | mysql> prompt (\u@\h) [\d]> |
persistent in bashrc:
1 | export MYSQL_PS1='(\u@\h) [\d]> ' |
You can hire me or make a donation via PayPal!
Today I finally managed to set up an incremental backup for my workstation. What do we need? Well, nothing more than rdiff-backup, an opensource command line tool with all the powers you need.
You can hire me or make a donation via PayPal!
I just had the need for an Iterator that can sort itself by a user defined callback.
My special use case is that the DirectoryIterator of PHP does not sort the file list so it’s pretty random. But my program logic relies on files being sorted by filename.
You can hire me or make a donation via PayPal!