I hereby claim:
- I am helior on github.
- I am helior (https://keybase.io/helior) on keybase.
- I have a public key ASBoJCvp70F1TePch1FmvrCwIU2U3JPuuQAbGG4bU-ujYAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Remove the first data character and push a string value onto the | |
| * end of a data representation while preserving its original | |
| * presentation. | |
| * | |
| * @param string $char A string value that will be concatenated | |
| * to the data series | |
| * @param string $string A string representation of data in which |
| find . -type d -name .git | xargs -n 1 dirname | while read line; do echo $line && cd $line && git pull && cd ..; done |
| #!/bin/bash | |
| OVERRIDEMAKEFILE="override.make" | |
| COMMONMAKEFILE="$(basename `pwd`).make" | |
| # If the override make file exists, use it... | |
| if [ -e $OVERRIDEMAKEFILE ]; then | |
| MAKEFILE=$OVERRIDEMAKEFILE | |
| # ... otherwise use the common makefile |