# Tips

## Change text in files

**Recursively change text (used in for laurasrecpten.nl when moving the site)**

`find . -type f -exec sed -i 's/www\.laurasrecepten\.nl/aws\.laurasrecepten\.com/' {} \;`

## .bashrc

##### Prompt

`PSI='\u@\h:$PWD:`

##### History

```shell
HISTSIZE=20000
HISTFILESIZE=20000

export HISTCONTROL=ignoredups
export HISTTIMEFORMAT='%F %T '
```

##### Aliases

```shell
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias rmlink='/bin/rm -ivr'
```