quick_command_list
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revisionNext revisionBoth sides next revision | ||
quick_command_list [2017/07/26 17:59] – k2patel | quick_command_list [2018/08/07 14:49] – [Remove file with ASCII Name] k2patel | ||
---|---|---|---|
Line 437: | Line 437: | ||
</ | </ | ||
+ | ==== Remove file with ASCII Name ==== | ||
+ | |||
+ | Simplest thing to do is use built in functionality to search and remove in command. | ||
+ | Here is the file i've on my machine. | ||
+ | <code bash> | ||
+ | �^? | ||
+ | </ | ||
+ | |||
+ | which translate to //'' | ||
+ | So check or list all the files with ascii in it. | ||
+ | <code bash> | ||
+ | ls [^[: | ||
+ | </ | ||
+ | |||
+ | now to remove | ||
+ | <code bash> | ||
+ | rm [^[: | ||
+ | </ | ||
+ | |||
+ | :!: Regex can be modified to list all matching file before removal. | ||
+ | |||
+ | ==== Testing connection or port without any software ==== | ||
+ | In linux proper way to test tcp or udp port connection without any software installed should be creating dev node. | ||
+ | |||
+ | <code bash> | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | out put can be redirected to tty with help of cat. | ||
+ | <code bash> | ||
+ | cat < / | ||
+ | </ |
quick_command_list.txt · Last modified: 2022/05/16 20:05 by k2patel