Skip to content

Commit 601292f

Browse files
authored
Update edit-file-with-control-char.md
1 parent 56601d4 commit 601292f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

edit-file-with-control-char.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ how to search contents of filesystem and edit a file with unprintable control ch
33
problem is, all files can look the same with the usual tools
44

55
#### grep files show inode
6-
``` grep -l "some search term" *|xargs -I {} ls -i '{}' ```
6+
grep -l "some search term" *|xargs -I {} ls -i '{}'
77

88
sample output
99
600434 (unprintable chars)
@@ -12,4 +12,4 @@ sample output
1212
601304
1313

1414
#### edit file with inode 600434 in vim
15-
``` find . -xdev -inum 600434 -exec vim {} \; ```
15+
find . -xdev -inum 600434 -exec vim {} \;

0 commit comments

Comments
 (0)