You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To install an older version than the latest one, you can specify the version by passing it as an argument to the install script (at the end of the command, before the closing parenthesis). For example, if you want to install `advcpmv-0.8-8.32.patch` you would modify the command above like so.
20
+
21
+
```
22
+
... && (cd advcpmv && sh install.sh 0.8 8.32)
23
23
```
24
24
25
25
## Usage
@@ -29,8 +29,8 @@ make
29
29
You can install the binaries and use `cpg -g` and `mvg -g` instead of cp and mv:
30
30
31
31
```
32
-
sudo mv ./src/cp /usr/local/bin/cpg
33
-
sudo mv ./src/mv /usr/local/bin/mvg
32
+
sudo mv ./advcpmv/advcp /usr/local/bin/cpg
33
+
sudo mv ./advcpmv/advmv /usr/local/bin/mvg
34
34
```
35
35
36
36
Progress bar does not work with reflink (introduced v9.0 onwards). So reflink is disabled if using progress bar, left unchanged otherwise.
@@ -40,8 +40,8 @@ Progress bar does not work with reflink (introduced v9.0 onwards). So reflink is
40
40
You can install the binaries and create aliases for bash (or whatever you use)
41
41
42
42
```
43
-
sudo mv ./src/cp /usr/local/bin/advcp
44
-
sudo mv ./src/mv /usr/local/bin/advmv
43
+
sudo mv ./advcpmv/advcp /usr/local/bin/
44
+
sudo mv ./advcpmv/advmv /usr/local/bin/
45
45
echo alias cp '/usr/local/bin/advcp -g' >> ~/.bashrc
46
46
echo alias mv '/usr/local/bin/advmv -g' >> ~/.bashrc
0 commit comments