7 lines
69 B
Bash
7 lines
69 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
old_pwd=$PWD
|
||
|
cd /var/www/html
|
||
|
git pull
|
||
|
export PWD=old_pwd
|