惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
Help Net Security
Help Net Security
P
Proofpoint News Feed
J
Java Code Geeks
爱范儿
爱范儿
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Full Disclosure
Google DeepMind News
Google DeepMind News
H
Help Net Security
G
Google Developers Blog
Jina AI
Jina AI
Vercel News
Vercel News
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
Lohrmann on Cybersecurity
S
Schneier on Security
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
Security Archives - TechRepublic
Security Archives - TechRepublic
阮一峰的网络日志
阮一峰的网络日志
N
News and Events Feed by Topic
GbyAI
GbyAI
B
Blog
O
OpenAI News
博客园_首页
Cisco Talos Blog
Cisco Talos Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Hacker News: Ask HN
Hacker News: Ask HN
TaoSecurity Blog
TaoSecurity Blog
腾讯CDC
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
C
Cybersecurity and Infrastructure Security Agency CISA
Cyberwarzone
Cyberwarzone
Webroot Blog
Webroot Blog
Simon Willison's Weblog
Simon Willison's Weblog
Y
Y Combinator Blog
C
Cisco Blogs
A
Arctic Wolf
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
T
The Exploit Database - CXSecurity.com
Security Latest
Security Latest
AI
AI
W
WeLiveSecurity
aimingoo的专栏
aimingoo的专栏
The Register - Security
The Register - Security
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale

博客园 - 沧海笑

会计帐目用语 见识阿里巴巴的妖精团队 新的一年需要改进的地方还有很多 ERP系統借贷关系表 作业成本法项目实施感想系列之十二:标准成本还是实际成本 关于管理会计 标准和平均成本计算比较 VMware 下 RHEL4网络配置 Vmware tools安装 Vmware 网络连接方式汇总(见回复1) 看书笔记:从今天开始看《LINUX与UNIX SHELL编程指南》, 计划每天一章,希望能够坚持下来。 ebsse clone manual modify dba password oracle EBS 报表不能输出常见解决方案 VSFTPD的设置参考文档(转载) linux下使用fdisk分区 (转载小惠惠) oracel ebs 管理学习篇二--------如果创建自定义菜单 oracel ebs 管理学习篇一 关于oracle EBS 项目成本分摊
linux常用命令
沧海笑 · 2006-07-22 · via 博客园 - 沧海笑

本文主要列举几个linux常用命令,最常用而容易发生错误。

一,cp:

-a 尽可能将档案状态、权限等资料都照原状予以复制。
-r 若 source 中含有目录名,则将目录下之档案亦皆依序拷贝至目的地。
-f 若目的地已经有相同档名的档案存在,则在复制前先予以删除再行复制。

二,chown:
Form: chown [option] user:group file1 file2 fiel3 ... 常用参数:-R

三,rm:
rm -rf file1

四,tar:
tar -zxvf file.tar.gz -C /path
:将file.tar.gz解压到path

五,vi:
    :1, $s/tom/David/g:把正文从一行到最后一行含有tom的字符替换成David;(g:全文替换,s:实现字串的替换,$:最后一行,%:表示全部,所有)
    :1, $s/<[Tt]om>/David/g::把正文从一行到最后一行tom单词替换成David ;

六,ls:
ls -ls |head -10:显示当前目录下最大的十大文件。