This file contains 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
##FILE SPACING: | |
# double space a file | |
sed G | |
# double space a file which already has blank lines in it. Output file | |
# should contain no more than one blank line between lines of text. | |
sed '/^$/d;G' | |
# triple space a file |
This file contains 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
$ vagrant destroy && vagrant up | |
homestead-7: Are you sure you want to destroy the 'homestead-7' VM? [y/N] y | |
==> homestead-7: Forcing shutdown of VM... | |
==> homestead-7: Destroying VM and associated drives... | |
Bringing machine 'homestead-7' up with 'virtualbox' provider... | |
==> homestead-7: Importing base box 'laravel/homestead'... | |
==> homestead-7: Matching MAC address for NAT networking... | |
==> homestead-7: Checking if box 'laravel/homestead' is up to date... | |
==> homestead-7: A newer version of the box 'laravel/homestead' is available! You currently | |
==> homestead-7: have version '5.2.0'. The latest is version '6.1.0'. Run |
This file contains 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
<?php | |
/* LICENSE | |
* Copyright (c) 2014 Máté Cserép | |
* | |
* This software is provided 'as-is', without any express or implied | |
* warranty. In no event will the authors be held liable for any damages | |
* arising from the use of this software. | |
* | |
* Permission is granted to anyone to use this software for any purpose, | |
* including commercial applications, and to alter it and redistribute it |