From e18bc2136877e9196695c3ea6282c0a0627fd2a5 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 28 Sep 2017 10:30:26 +0100 Subject: [PATCH 1/2] sync: add page --- pages/common/sync.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/common/sync.md diff --git a/pages/common/sync.md b/pages/common/sync.md new file mode 100644 index 000000000..1035ea13a --- /dev/null +++ b/pages/common/sync.md @@ -0,0 +1,11 @@ +# sync + +> Synchronises all pending write operations to the appropriate disk. + +- Synchronise all pending write operations on all disks: + +`sync` + +- Synchronise all pending write operations on a single file to disk: + +`sync {{path/to/file.ext}}` From ad0c4833570021c5f341daa0a3bded1280b2bfcf Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 28 Sep 2017 22:13:38 +0100 Subject: [PATCH 2/2] Update sync.md --- pages/common/sync.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/sync.md b/pages/common/sync.md index 1035ea13a..a5faab24c 100644 --- a/pages/common/sync.md +++ b/pages/common/sync.md @@ -1,11 +1,11 @@ # sync -> Synchronises all pending write operations to the appropriate disk. +> Flushes all pending write operations to the appropriate disks. -- Synchronise all pending write operations on all disks: +- Flush all pending write operations on all disks: `sync` -- Synchronise all pending write operations on a single file to disk: +- Flush all pending write operations on a single file to disk: -`sync {{path/to/file.ext}}` +`sync {{path/to/file}}`