linux学习——拷文件

1、本地拷文件

cp [option] 源文件 目标文件

-a 尽可能将档案状态、权限等资料都照原状予以复制。

-r 若 source 中含有目录名,则将目录下之档案亦皆依序拷贝至目的地。

-f 若目的地已经有相同档名的档案存在,则在复制前先予以删除再行复制。

[[email protected] test]$ cp helloworld.c ../
[[email protected] test]$ cd ..
[[email protected] liyan]$ ls -lt
total 2000
-rw-rw-r-- 1 syscom syscom     985 Jan 20 21:05 helloworld.c

2、远程拷文件

scp [email protected]:源文件 目标文件(远程拷到本地)

scp 源文件 [email protected]:目标文件(本地拷到远程)

3、ftp/sftp

sftp [email protected](连到远程主机)

sftp> help
Available commands:
bye                                Quit sftp(退出)
cd path                            Change remote directory to ‘path‘
chgrp grp path                     Change group of file ‘path‘ to ‘grp‘
chmod mode path                    Change permissions of file ‘path‘ to ‘mode‘
chown own path                     Change owner of file ‘path‘ to ‘own‘

df [-hi] [path]                    Display statistics for current directory or                                   filesystem containing ‘path‘(显示当前目录或包含‘path‘的文件系统的统计信息)
exit                               Quit sftp
get [-P] remote-path [local-path]  Download file
help                               Display this help text
lcd path                           Change local directory to ‘path‘
lls [ls-options [path]]            Display local directory listing
lmkdir path                        Create local directory
ln oldpath newpath                 Symlink remote file
lpwd                               Print local working directory
ls [-1aflnrSt] [path]              Display remote directory listing
lumask umask                       Set local umask to ‘umask‘
mkdir path                         Create remote directory
progress                           Toggle display of progress meter
put [-P] local-path [remote-path]  Upload file
pwd                                Display remote working directory
quit                               Quit sftp
rename oldpath newpath             Rename remote file
rm path                            Delete remote file
rmdir path                         Remove remote directory
symlink oldpath newpath            Symlink remote file
version                            Show SFTP version
!command                           Execute ‘command‘ in local shell
!                                  Escape to local shell
?                                  Synonym for help
时间: 2024-10-18 09:13:53

linux学习——拷文件的相关文章

linux学习(2)文件操作

pwd 显示当前目录 touch 创建空白文件或者更新已有文件的时间 .开头的文件为隐藏文件 列出目录内容 ls -a 显示所有文件 包括隐藏文件 ls -r 显示详细信息 ls -R 显示子目录的结构 ls -ld显示目录和链接的信息 file查看文件的类型 cd 切换目录 复制 cp 源文件 目标文件(目录) 复制文件夹 cp -r 源文件夹 目标文件夹 显示复制的详细信息 cp -v 移动 mv 文件 目标目录 移动并且修改文件名 mv 文件 目标目录/文件名 重命名 mv 文件 文件名

Linux学习记录--文件IO操作相关系统编程

文件IO操作相关系统编程 这里主要说两套IO操作接口,分别是: POSIX标准 read|write接口,函数定义在#include<unistd.h> ISO C标准 fread|fwrite接口,函数定义在#include<stdio.h> 有书上说POSIX标准与ISO C标准的区别在于文件读写是否带缓冲区,我则不是很认同,因此POSIX标准下的IO操作也是带缓冲区的,至于这两个标准下的IO性能谁更加好则不一定,因为这和缓冲区的大小,以及用户逻辑有很大关系. POSIX标准

Linux学习日志--文件搜索命令

开头总结: 学习了Linux中的文件搜索命令find和locate,系统搜索命令whereis 和which ,字符串搜索命令grep,find和locate的区别和用法格式,什么是path环境变量以及其好处,whereis和which的用法,区别在于查询系统命令内容的不同,grep和find的区别,为什么要引入通配符? 什么情况下用通配符还是正则表达式? Locate文件搜索命令: 1)格式: Locate [文件名] 2)更新数据库 updatedb 好处: 相对于find命令来说,Loca

Linux学习之文件搜索命令

1.文件搜索命令 find 2.find命令常用选项:根据文件名.文件大小.所有者.所属组 进行查找 find / -name init 表示全盘搜索init文件或目录.注意 /表示全盘  .表示当前目录 Linux里面的文件搜索是精准搜索的,如果要进行模糊匹配,需要使用通配符,例如: find /etc -name *init* 表示查找文件名包含init字符的文件.*表示匹配任意个字符. find /etc -name *init 表示查找文件名以init结尾的文件. find /etc -

Linux学习之文件操作

Linux,一起学习进步- mkdir The mkdir command is used to create directories.It works like this: mkdir命令是用来创建目录的,这样使用: mkdir directory… A note on notation: When three periods follow an argument in the description of a command(as above),it means that the argum

Linux学习之文件的压缩与解压

下面来学习四个常用的压缩命令. gzip 特点: 1.只能压缩文件,不能压缩目录 2.不保留源文件 [[email protected] test]# gzip aaa             将aaa文件进行压缩 [[email protected] test]# gunzip aaa.gz     将aaa.gz文件进行解压 [[email protected] test]# gzip -d aaa.gz    作用同上 tar tar类型的的压缩文件应该是大家最常见的吧,在网上下的好多软件

Linux学习---(文件的压缩和解压缩命令zip unzip tar、关机和重启命令shutdown reboot……)

1.压缩和解压缩命令    常用压缩格式:.zip..gz..bz2..tar.gz..tar.bz2..rar    .zip格式压缩和解压缩命令        zip 压缩文件名 源文件:压缩文件        zip -r 压缩文件名 源目录:压缩目录        unzip 压缩文件名:解压缩 .zip文件    .gz格式压缩和解压缩        gzip 源文件:压缩为.gz 格式的压缩文件,源文件会消失        gzip -c 源文件 > 压缩文件:压缩为.gz 格式,源

Linux 学习:文件特殊权限SUID, SGID, SBIT

本次记录Linux特殊权限SUID.SGID.SBIT相关知识及使用实例等. 由于SUID和SGID涉及到系统安全,所以对它们知识点的掌握尤为重要. 关于文件权限的表示方法和解析 SUID是Set User ID,SGID是Set Group ID的意思. Linux下可以用ls –l命令来查看文件的权限.用ls命令所得到的表示法的格式是类似这样的:-rwxr-xr-x 这种方法共有十位 9 8 7 6 5 4 3 2 1 0 -  r w x r  -  x  r - x 第9位表示文件类型,

Linux学习之文件系统管理

一.Linux文件系统管理: mkfs, mkfs -t type=mkfs.type : 即表示这两种用法的效果一致 1.ext的专属文件系统格式化工具 mke2fs 用法: mke2fs [option]....DEVICE [option]:参数 -t {ext2|ext3|ext4} :指定是那种形式的ext文件系统 -b {1024|2048|4096} :指定块大小,如果存储的文件是大文件,则块大小应该选着4096 ,块大小应该根据存放文件来决定,或者根据经验来选择: -L 'leb