We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56601d4 commit 601292fCopy full SHA for 601292f
edit-file-with-control-char.md
@@ -3,7 +3,7 @@ how to search contents of filesystem and edit a file with unprintable control ch
3
problem is, all files can look the same with the usual tools
4
5
#### grep files show inode
6
-``` grep -l "some search term" *|xargs -I {} ls -i '{}' ```
+ grep -l "some search term" *|xargs -I {} ls -i '{}'
7
8
sample output
9
600434 (unprintable chars)
@@ -12,4 +12,4 @@ sample output
12
601304
13
14
#### edit file with inode 600434 in vim
15
-``` find . -xdev -inum 600434 -exec vim {} \; ```
+ find . -xdev -inum 600434 -exec vim {} \;
0 commit comments