This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UPDATE users | |
| SET name = CONCAT('user', (select @rownum:=@rownum+1 rownum FROM (SELECT @rownum:=0) r)) | |
| WHERE uid > 1; | |
| UPDATE users | |
| SET mail = CONCAT('user', (select @rownum:=@rownum+1 rownum FROM (SELECT @rownum:=0) r), '@example.com') | |
| WHERE uid > 1; | |
| UPDATE users | |
| SET pass = '$S$DR.ROS3sDma71iTWcofZszOb8dMqrPi3PUWWNNc3rIwcG4ikL2gS' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Put this in your ~/.bash_profile | |
| # Git command and tag/branch completion as well as putting the branch | |
| # in your prompt including a "*" if it is dirty (changed) | |
| . /usr/local/etc/bash_completion.d/git-completion.bash | |
| export GIT_PS1_SHOWDIRTYSTATE=true | |
| export PS1='\u@\h \[\033[1;33m\]\W\[\033[0m\]$(__git_ps1 "[%s]")\$ ' |
NewerOlder