2021年10月12日 星期二

subversion svn doesn't save password

 Newer version default can't save password in plain text

Just add the following paragraph into the specific user file (a unique code) in ~/.subversion/auth/svn.simple/


K 8

passtype

V 6

simple

K 8

password

V 20

NotTheActualPassword

(Change 20 to the length of your password)

2021年4月3日 星期六

Get meaningful or WYSIWYG usage by du

 If you just use the following command, you get "disk usage" not "the actual file or folder size".

# du -h --max-depth=1

So add --apparent-size arguments

# du -h --apparent-size --max-depth=1