9 lines
70 B
Bash
9 lines
70 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
pushd .
|
||
|
cd $(dirname "$0")
|
||
|
|
||
|
php update-headers.php
|
||
|
|
||
|
popd
|