标签 Linux 下的文章

#!/bin/bash HOST="your_ftp_host" # FTP服务器地址 USERNAME="your_username" # FTP登录用户名 PASSWORD="your_password" # FTP登录密码 LOCALDIR="/path/to/local/directory/" # 要上传的本地目录路径 REMOTEDIR="/remote/directory/" # 远程目标目录路径(如果不存在则会自动创建)

Tags: Linux FTP

Read more

vi /etc/sysctl.conf net.ipv6.conf.all.disable_ipv6=1 net.ipv6.conf.default.disable_ipv6=1 net.ipv6.conf.lo.disable_ipv6=1 sudo sysctl -p

Tags: Linux IPv6

Read more

在单个文件中查询指定字符串 grep "literal_string" filename 在多个文件中查找指定字符串,FILE_PATTERN 表示文件通配符表示。比如当前目录下的所有文件 ./* grep "string" FILE_PATTERN 查找的过程中忽略大小写 grep -i "string" FILE

Tags: Linux Grep

Read more

V