reverse the order of dd arguments to ease copy
authoranarcat <anarcat@users.noreply.github.com>
Fri, 9 Sep 2022 16:14:50 +0000 (12:14 -0400)
committerGitHub <noreply@github.com>
Fri, 9 Sep 2022 16:14:50 +0000 (12:14 -0400)
commit1029e2fb73e582f10784bd24907dde4e2a87d44b
treeb9bc3133a9fe9416d4c27d35dae5ebac3a708c8b
parentdaa779e5337514566752457f6535c8186dd75c7c
reverse the order of dd arguments to ease copy

This is easier to copy-paste:

```
dd bs=4M status=progress conv=fdatasync if=grml_2021.07.iso of=/dev/USB_KEY
```

... because I can just paste it in a terminal and all I have to change is the last word. Compare with the previous version:

```
dd if=grml_2021.07.iso of=/dev/USB_KEY bs=4M status=progress conv=fdatasync
```

... where you have to paste, move your cursor right before ` bs` (notice the space), then change the word.

All that `bs=` and `conv=` is cosmetic anyways, keep the good stuff where it matters, near the end of line, where the cursor will be.
download/index.html.tt2