zoukankan
html css js c++ java
linux删除包含特殊符号文件名的文件
假设Linux系统中有一个文件名叫“-test”。如果用户想删除它,按照一般的删除方法在命令行中输入“rm -test”命令后,界面会提示是“无效选项”(invalid option)。
原因是Linux把文件名的第一个字符为“-”当作选项了。用户可以使用“--”符号来解决这个问题。输入“rm -- -test”命令便可顺利删除名为“-test”的文件。
如果是其它特殊字符的话可以在特殊字符前加一个“”符号,或者用双引号把整个文件名括起来都可以。
查看全文
相关阅读:
Flask基础教程
htmlrunner-unittest生成多样的测试报告
requestz-基于pycurl封装的requests库
emailz-使发送邮件更方便
filez-方便的数据文件加载器
logz-易用的日志记录器
基本语言(二)
基本语言(一)
编程范式(Programming paradigm)
deque 双向队列知识点汇总
原文地址:https://www.cnblogs.com/jxterminator/p/4037451.html
最新文章
A Primer on Domain Adaptation Theory and Applications
Orthogonal Convolutional Neural Networks
[Box] Robust Training and Initialization of Deep Neural Networks: An Adaptive Basis Viewpoint
[Kaiming]Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification
[Xavier] Understanding the difficulty of training deep feedforward neural networks
卷积
Geometric GAN
McGan: Mean and Covariance Feature Matching GAN
One Pixel Attack for Fooling Deep Neural Networks
Differential Evolution: A Survey of the State-of-the-Art
热门文章
树形dp
dp线性&&LIS
高精度
linux下面nginx源码安装,配置以及安装过程中故障解决
oracle常用命令----登陆,设置显示行页,编辑执行文件,表结构,类型
网络基础知识----------iptables
Python基础03-基本数据类型
Python基础02-Python基本语法
Python基础01-Python简介、环境搭建及包管理
HttpRunner1.5.6基础使用
Copyright © 2011-2022 走看看