To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
- Homebrew
- Mountain Lion -> High Sierra
To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
| #!/bin/bash | |
| FILENAME=filename_here.csv | |
| HDR=$(head -1 $FILENAME) | |
| split -l 100 $FILENAME xyz | |
| n=1 | |
| for f in xyz* | |
| do | |
| if [ $n -gt 1 ]; then | |
| echo $HDR > Part${n}.csv | |
| fi |