手机版
热门标签
站点地图
我要投稿
广告合作
联系我们
搜 索
广告位招租
广告位招租
切换导航
首页
编程教程
编程导航
编程百科
编程问答
编程博文
编程实例
硬件设备
网络运营
软件教程
移动数码
办公软件
操作系统
人工智能
栏目导航
▸ 编程语言
▸ 前端开发
▸ 移动开发
▸ 开发工具
▸ 程序设计
▸ 行业应用
▸ CMS系统
▸ 服务器
▸ 数据库
公众号推荐
微信公众号搜
"智元新知"
关注
微信扫一扫可直接关注哦!
子栏目导航
Linux
Windows
CentOS
Ubuntu
Nginx
WebService
Scala
Memcache
Apache
Redis
Docker
Bash
Azure
Tomcat
LNMP
Shell
Ansible
KVM虚拟机
数据结构
鸿蒙系统
宝塔面板
服务器运维
网络安全
编程之家
Shell
linux系统中awk进行列的替换
1、测试数据 [root@centos7 test2]# cat a.txt e d g e s d g w a x d g n d i d 2、将第三列替换为xxx [root@centos7 te
作者:编程之家 时间:2022-11-26
xshell,winscp,xftp无法用root用户登录
1 编辑vim /etc/ssh/sshd_config文件 把PermitRootLogin Prohibit-password 添加#注释掉 新添加:PermitRootLogin yes 更改P
作者:编程之家 时间:2022-11-26
linux系统中实现文本转置
1、 [root@centos7 test]# cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22
作者:编程之家 时间:2022-11-26
linux系统中统计指定类型文件大小的总和
1、测试数据 [root@centos7 test2]# ll -h total 1.4G -rw-r--r--. 1 root root 41M Apr 15 09:47 a.map -rw-r--
作者:编程之家 时间:2022-11-26
linux系统中只删除所有文件或只删除所有目录
1、创建测试数据 [root@centos7 test2]# touch a.txt b.txt c.txt; mkdir test01 test02 test03 [root@centos7 tes
作者:编程之家 时间:2022-11-26
linux系统中提取具有指定列的行
1、创建测试数据 [root@centos7 test2]# cat > a.txt i s g z e q d k i p m h y u t e ^C [root@centos7 test2
作者:编程之家 时间:2022-11-26
linux系统中如何删除最后一列
1、测试数据 [root@centos7 test2]# cat a.txt e d g e s d g w a x d g n d i d [root@centos7 test2]# cat a.t
作者:编程之家 时间:2022-11-26
No package epel-release available.
1、直接安装报错 当前系统为rhel7.0 [root@localhost home]# yum install epel-release Loaded plugins: langpacks, pro
作者:编程之家 时间:2022-11-26
linux系统redhat7.9安装R
1、查看系统信息 [root@localhost home]# cat /etc/redhat-release Red Hat Enterprise Linux Server release 7.9
作者:编程之家 时间:2022-11-26
linux系统中给数据加上列号
1、测试数据 [root@centos7 test]# cat a.txt e d g e s d g w a x d g n d i d 2、 [root@centos7 test]# cat a.
作者:编程之家 时间:2022-11-26
One of the configured repositories failed (Unknown), and yum doesn't have enough cached data to continue.
1、问题 [root@localhost home]# yum install httpd Loaded plugins: langpacks, product-id, subscription-ma
作者:编程之家 时间:2022-11-26
linux系统redhat 8.3 安装R
1、查看当前系统: [root@rhel8 home]# cat /etc/redhat-release Red Hat Enterprise Linux release 8.3 (Ootpa) [r
作者:编程之家 时间:2022-11-26
linux shell for循环
1、测试1 [root@centos7 test2]# for ((i=1; i<=5; i++)); do echo "100"; done 100 100 100 100
作者:编程之家 时间:2022-11-26
linux系统 shell脚本 接收用户的参数
1、基本shell脚本 #!/bin/bash command 2、参数的变量 $0:脚本名称 $#:参数的数目 $*:参数 $1:第一个参数 $2:第二个参数 $3:第三个参数 $?:上一条命令执行
作者:编程之家 时间:2022-11-26
linux中 for语句和while语句计算1-100的和
1、for语句 [root@centos7 test2]# cat test.sh #!/bin/bash sum=0 for i in `seq $1` do let sum+=$i done ec
作者:编程之家 时间:2022-11-26
linux系统awk命令求一行值的和、平均值、最大值和最小值
1、和 [root@centos7 test]# cat a.txt 3 8 9 4 2 4 8 1 9 8 4 2 8 5 3 2 [root@centos7 test]# sed -n '
作者:编程之家 时间:2022-11-26
linux shell if语句
1、测试1 [root@centos7 test2]# ls a.txt [root@centos7 test2]# if [ -e a.txt ]; then echo "exist&qu
作者:编程之家 时间:2022-11-26
linux系统中case语句的用法
1、测试1 [root@centos7 test2]# cat test.sh #!/bin/bash read -p "please input an character: "
作者:编程之家 时间:2022-11-26
linux系统中sort命令
linux系统中sort命令。 1、测试数据 [root@centos7 test2]# cat a.txt google 110 5000 baidu 100 5000 guge 50 3000 s
作者:编程之家 时间:2022-11-26
c语言 4-7 显示出小于输入的整数的所有2的乘方
1、while语句 #include <stdio.h> int main(void) { int i = 2, j; puts("please input an integer
作者:编程之家 时间:2022-11-26
linux shell脚本中流程控制语句 if 、for、while、case
linux shell脚本中流程控制语句 if、for、while、case 1、if语句 [root@centos7 test2]# ls test.sh [root@centos7 test2]#
作者:编程之家 时间:2022-11-26
linux系统中awk命令 正则匹配
1、测试数据 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e g x g e w 2、打印匹配w的行 [root@cento
作者:编程之家 时间:2022-11-26
linux系统中去掉最后一个字符或第一个字符
1、 [root@centos7 test]# ls a.txt [root@centos7 test]# cat a.txt i e s m u w e i p q x z u n k e c b
作者:编程之家 时间:2022-11-26
linux shell while循环
1、测试1 [root@centos7 test2]# i=0 [root@centos7 test2]# max=5 [root@centos7 test2]# while((i<max));
作者:编程之家 时间:2022-11-26
linux 系统中read命令
1、read从键盘读入 [root@centos7 test]# echo $a [root@centos7 test]# read a 123456 [root@centos7 test]# ech
作者:编程之家 时间:2022-11-26
linux系统中如何把一列数据转换为一行数据
1、测试数据,测试1 [root@centos7 test2]# seq -f %02g 10 > a.txt [root@centos7 test2]# ls a.txt [root@cent
作者:编程之家 时间:2022-11-26
linux系统中 while read逐行读取数据
1、测试for cat [root@PC3 test]# cat a.txt 01 02 03 06 07 08 11 12 13 16 17 18 [root@PC3 test]# for i in
作者:编程之家 时间:2022-11-26
linux系统中统计文本中单词出现的次数
1、测试数据 [root@PC3 test]# cat a.txt e i e s d e t q s g e g 2、 [root@PC3 test]# cat a.txt e i e s d e
作者:编程之家 时间:2022-11-26
linux系统中条件测试语句
linux系统中条件测试语句分为4类: 1、文件测试语句 2、逻辑测试语句 3、整数值比较语句 4、字符串比较语句 一、文件测试语句 -e :是否存在 -f :是否为文件 -d:是否为目录文件 -r:
作者:编程之家 时间:2022-11-26
linux 终端光标消失问题
1、隐藏光标 echo -e "\033[?25l" 2、显示光标 echo -e "\033[?25h" 来源:https://blog.csdn.net/w
作者:编程之家 时间:2022-11-26
上一页
7
8
9
10
11
12
13
14
下一页
小编推荐
热门标签
更多
python
JavaScript
java
HTML
reactjs
C#
Android
CSS
Node.js
sql
r
python-3.x
MysqL
jQuery
c++
pandas
Flutter
angular
IOS
django
linux
swift
typescript
路由器
JSON
路由器设置
无线路由器
h3c
华三
华三路由器设置
华三路由器
电脑软件教程
arrays
docker
软件图文教程
C
vue.js
laravel
spring-boot
react-native