Преглед на файлове

touch: Remove hard coded date example. Reorder wording for -r.

Peter Tripp преди 9 години
родител
ревизия
93b96be95c
променени са 1 файла, в които са добавени 3 реда и са изтрити 4 реда
  1. 3 4
      pages/common/touch.md

+ 3 - 4
pages/common/touch.md

@@ -6,11 +6,10 @@
 
 `touch {{filename}}`
 
-- Set the times on a file to those specified:
+- Set the times on a file to a specific date and time:
 
-`touch -t 201412250801.59 {{filename}}`
 `touch -t {{YYYYMMDDHHMM.SS}} {{filename}}`
 
-- Set the times on a file to match those on second file:
+- Use the times from a file to set the times on a second file:
 
-`touch -r {{filename2}} {{filename}}`
+`touch -r {{filename}} {{filename2}}`