Merge pull request #5 from schollz/master

Update README.md
This commit is contained in:
Ori Livneh
2017-12-06 15:22:21 -05:00
committed by GitHub

View File

@@ -12,3 +12,17 @@ https://web.archive.org/web/20131115171331/http://beatex.org/web/advancedcopy.ht
advcpmv-0.5-8.21.patch was the last patch released by the author (on February
14, 2013). advcpmv-0.6-8.24.patch is simply a rebase of that on top of the 8.24
version of coreutils.
## Build instructions
```
wget http://ftp.gnu.org/gnu/coreutils/coreutils-8.21.tar.xz
tar xvJf coreutils-8.21.tar.xz
cd coreutils-8.21/
wget https://raw.githubusercontent.com/schollz/advcpmv/master/advcpmv-0.5-8.21.patch
patch -p1 -i advcpmv-0.5-8.21.patch
./configure
make
sudo mv ./src/cp /usr/local/bin/cpg
sudo mv ./src/mv /usr/local/bin/mvg
```