User Tools

Site Tools


quick_command_list

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
quick_command_list [2017/07/26 17:59] k2patelquick_command_list [2018/05/22 17:59] – [Ping packet size] k2patel
Line 437: Line 437:
 </code> </code>
  
 +==== 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>
 +�^?
 +</code>
 +
 +which translate to //''$'\250\177'// <br>
 +So check or list all the files with ascii in it.
 +<code bash>
 +ls [^[:ascii:]]*
 +</code>
 +
 +now to remove
 +<code bash>
 +rm [^[:ascii:]]*
 +</code>
 +
 +:!: Regex can be modified to list all matching file before removal.
quick_command_list.txt · Last modified: 2022/05/16 20:05 by k2patel