*: path/to/everything (#9589)

This commit is contained in:
pixel
2022-12-04 10:12:49 +01:00
committed by GitHub
parent ab7a36fbe6
commit 0d99563193
61 changed files with 147 additions and 147 deletions

View File

@@ -5,8 +5,8 @@
- Look for lines which begins with the given prefix:
`look {{prefix}} {{file}}`
`look {{prefix}} {{path/to/file}}`
- Look for lines ignoring case:
`look --ignore-case {{prefix}} {{file}}`
`look --ignore-case {{prefix}} {{path/to/file}}`

View File

@@ -5,7 +5,7 @@
- Write the contents of the clipboard to a file:
`pbpaste > {{file}}`
`pbpaste > {{path/to/file}}`
- Use the contents of the clipboard as input to a command:

View File

@@ -5,20 +5,20 @@
- Show file properties such as size, permissions, creation and access dates among others:
`stat {{file}}`
`stat {{path/to/file}}`
- Same as above but verbose (more similar to Linux's `stat`):
`stat -x {{file}}`
`stat -x {{path/to/file}}`
- Show only octal file permissions:
`stat -f %Mp%Lp {{file}}`
`stat -f %Mp%Lp {{path/to/file}}`
- Show owner and group of the file:
`stat -f "%Su %Sg" {{file}}`
`stat -f "%Su %Sg" {{path/to/file}}`
- Show the size of the file in bytes:
`stat -f "%z %N" {{file}}`
`stat -f "%z %N" {{path/to/file}}`