The Linux operating system provides powerful command line tools, such as the rm command, which can delete files and directories. However, some files are specially named and the ordinary rm command may not be able to delete them, which troubles many Linux users. In this article, we will introduce several ways to remove special file names so that you can easily deal with these annoying files.
linux file naming rules
Before the introduction, let’s briefly explain the file naming rules in Linux. The file or directory name consists of any sequence of ASCII characters except "/" and the null character "\0". Of course many operating systems allow more types of characters to form file names. But for us, it is not recommended to use some special characters to name files. Unfortunately, we may have accidentally created some files with special names, or the program has accidentally created some files consisting of special characters. At this time, deleting them seems not as simple as imagined.
Put the path when deleting
Suppose there is a file named -static, we delete it using the normal method:
$ rm -static rm: invalid option -- 's' Try 'rm ./-static' to remove the file '-static'. Try 'rm --help' for more information.
It is a pity that this method prompts an error and cannot successfully delete the -static file. Why is this? We know that in Linux, it usually starts with -, followed by some characters, as a command option. Unfortunately, -static is considered a parameter option by the rm command. Unfortunately, in fact, There is no such option, so the final prompt is invalid option — 's', resulting in the -static file being unable to be deleted.
So is there any way to delete it? We noticed that in addition to prompting illegal options, we also tried rm ./-static. Is it possible? Let’s try:
$ rm ./-static $
Finally found that we successfully deleted the -static file. So we get our first method, which is to delete the file with the path.
Use —
when deletingIn addition to prompting us to use rm ./-static, we also asked us to use rm –help to get more information, so let’s take a look:
$ rm --help (省略部分内容) To remove a file whose name starts with a '-', for example '-foo', use one of these commands: rm -- -foo rm ./-foo (省略部分内容)
There is a lot of content, but you can notice the above content. For files starting with -, two deletion methods are provided. The second one is the one mentioned above, and the second one is before the deleted file. add-:
$ rm -- -static $
We found that this method can also delete files starting with -.
Use quotation marks when deleting
How to delete files composed of special characters, such as !*? For example:
$ rm \!* rm: missing operand Try 'rm --help' for more information.
For this type of file, we need to enclose the file name in quotes:
$ rm "\!*" $
This can be deleted, but this method cannot be used for all files of this type. For example, files named !* cannot be deleted in this way, because !* has other meanings, specifically Please refer to "Do you know the exclamation usage of "!" in Linux?"
Add escape characters to delete files
Since !* cannot be deleted by adding quotes, is there any other way? Yes! When deleting, add escape characters:
$ rm \!* $
This can be deleted. In Linux, many characters have special meanings, so when you need to use them as ordinary characters, you need to add the \ escape character in front, which is somewhat similar to the escape in C language. For another example, to delete abc files starting with spaces, you can use the following method:
$ rm \ abc $
will be deleted successfully.
Delete according to i node number
Many times, file names cannot be entered at all because they are a bunch of garbled characters. Therefore, it is completely impossible to delete it through the method introduced above. Is there any other way? Yes! Find the i node of the file and delete it according to the i node.
For example:
$ ls -i #找到乱码文件的i节点号 1703907 ç¼?ç¨?ç? ç??é«?æ¸?pdfç??.pdf $ find ./ -inum 1703907 -exec rm {} \; #或者使用-delete参数
For the usage of find command, please refer to "Advanced Usage of Find Command". This method of deleting by i-node number is applicable to any type of file mentioned above.
A few words to expand here. In the operating system, how does it identify a file? It does not identify different files through the file name, but through an iNode number, that is, the i node number. The file name is just one of the attributes of the file.
Use wildcards to delete
Not much explanation:
$ rm *.pdf $
However, this method may cause accidental deletion, because as long as the file name ends with .pdf, it will be deleted, so use it with caution according to the actual situation.
Summarize
There are many ways to delete special file names, summarized as follows:
- Bring the path when deleting
- Use — when deleting
- Use quotation marks when deleting
- Use escape characters to assist in removing
- Delete according to i node number
- Use wildcards to remove
Different types of files can be deleted using the more convenient methods mentioned above.
Removing special filenames in Linux can be a frustrating thing, but we've covered several ways to fix this problem in this article. You can choose one of the methods according to your needs to delete these problem files quickly and efficiently. Now you can use Linux with confidence and quickly resolve special filename issues when needed.
The above is the detailed content of Multiple ways to delete special file names in Linux. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
