From 8edf198bb107834ab0e6ca9780e6c51ff08f4a2b Mon Sep 17 00:00:00 2001 From: socutebunny <32743950+socutebunny@users.noreply.github.com> Date: Wed, 16 Jan 2019 20:12:24 -0800 Subject: [PATCH] Format page to look like other bash command pages. (#26977) --- guide/english/bash/bash-touch/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/guide/english/bash/bash-touch/index.md b/guide/english/bash/bash-touch/index.md index 0cea09ec3e..4cc35ad014 100644 --- a/guide/english/bash/bash-touch/index.md +++ b/guide/english/bash/bash-touch/index.md @@ -7,6 +7,7 @@ title: Bash touch **Change timestamps of files.** **Quickly create new files.** +### Usage ``` touch [options] filename ``` @@ -20,7 +21,9 @@ Commonly used options: - `-r` use timestamp from first file to second file. - `-a` In case you want to only change the access time, use the -a command line option. - `-m` Similarly, if the requirement is to only change the modification time, use the -m command line option. -Examples: + + +### Example ``` touch -t YYYYMMDDHHMM.SS filename touch -r file1 file2