[LINUX] [Command] Command to get a list of files containing double-byte characters

This command can be used when you want to get a list of files containing double-byte characters in a certain folder.

It can be used when it is necessary to translate Japanese comments into English for a project when OSS is released.

Get a list of files that contain double-byte characters

This can be achieved by detecting non-ASCII characters with a regular expression.

find [Search symmetric folder path] -type f | LANG=C xargs grep -n -v '^[[:cntrl:][:print:]]*$' --binary-files=without-match

If you want to target only files with a specific extension, type the following command.

find [Search symmetric folder path] -type f -name "*.[Extension you want to search]" | LANG=C xargs grep -n -v '^[[:cntrl:][:print:]]*$' --binary-files=without-match

Recommended Posts

[Command] Command to get a list of files containing double-byte characters
[Linux] Command to get a list of commands executed in the past
How to get a list of files in the same directory with python
How to get a list of built-in exceptions in python
How to get a list of links from a page from wikipedia
Generate a list of consecutive characters
Command to list all files in order of file name
Try to get a list of breaking news threads in Python.
I tried to get a list of AMI Names using Boto3
Get a list of files in a folder with python without a path
[python] Get a list of instance variables
String conversion of a list containing numbers
[Python] Get a list of folders only
Add a command to mark similar files together
Get a list of IAM users with Boto3
Get a list of Qiita likes by scraping
Create a command to get the work log
How to pass the execution result of a shell command in a list in Python
I want to see a list of WebDAV files in the Requests module
Python script to get a list of input examples for the AtCoder contest
I wanted to know the number of lines in multiple files, so I tried to get it with a command
Convert a slice object to a list of index numbers
How to write a list / dictionary type of Python3
Python: Get a list of methods for an object
How to identify the element with the smallest number of characters in a Python list?
Try to get the function list of Python> os package
[Golang] Command to check the supported GOOS and GOARCH in a list (Check the supported platforms of the build)
[Python] How to make a list of character strings character by character
Python> Get a list of files in multiple directories> Use glob | Sort by modification time
Get UNIXTIME at the beginning of today with a command
Get the value of a specific key up to the specified index in the dictionary list in Python
Get the number of specific elements in a python list
Get a list of purchased DMM eBooks with Python + Selenium
Developed a library to get Kindle collection list in Python
Since Python 1.5 of Discord, I can't get a list of members
How to display a list of installable versions with pyenv
How to get the last (last) value in a list in Python
How to get a quadratic array of squares in a spiral!
How to pass the execution result of a shell command in a list in Python (non-blocking version)
How to connect the contents of a list into a string
It is surprisingly troublesome to get a list of the last login date and time of Workspaces
How to display a specified column of files in Linux (awk)
I tried to get a database of horse racing using Pandas
I tried to get the index of the list using the enumerate function
How to get a string from a command line argument in python
I tried to create a list of prime numbers with python
[Go] Create a CLI command to change the extension of the image
Here's a brief summary of how to get started with Django
Convert a large number of PDF files to text files using pdfminer
How to output the output result of the Linux man command to a file
How to get the vertex coordinates of a feature in ArcPy
A command to easily check the speed of the network on the console
Run Systems Manager from Lambda to get a backup of EC2
How to get a list excluding elements whose index is i ...?
Create a function to get the contents of the database in Go
Introduction of ls command lsix that can display a list of images
[Python] A program that rotates the contents of the list to the left
A memorandum of files under conf.d
Web scraping beginners tried to make a command to get the movie name of next Friday Road Show
Get a list of packages installed in your current environment with python
[Python] How to put any number of standard inputs in a list