手机版
热门标签
站点地图
我要投稿
广告合作
联系我们
搜 索
广告位招租
广告位招租
切换导航
首页
编程教程
编程导航
编程百科
编程问答
编程博文
编程实例
硬件设备
网络运营
软件教程
移动数码
办公软件
操作系统
人工智能
栏目导航
▸ 编程语言
▸ 前端开发
▸ 移动开发
▸ 开发工具
▸ 程序设计
▸ 行业应用
▸ CMS系统
▸ 服务器
▸ 数据库
公众号推荐
微信公众号搜
"智元新知"
关注
微信扫一扫可直接关注哦!
子栏目导航
Linux
Windows
CentOS
Ubuntu
Nginx
WebService
Scala
Memcache
Apache
Redis
Docker
Bash
Azure
Tomcat
LNMP
Shell
Ansible
KVM虚拟机
数据结构
鸿蒙系统
宝塔面板
服务器运维
网络安全
编程之家
Shell
linux中生成文件的绝对路径
1、测试文件 [root@centos79 test]# touch a.txt b.txt [root@centos79 test]# ls a.txt b.txt 2、生成测试文件的绝对路径 [r
作者:编程之家 时间:2022-11-26
linux 系统中如何产生随机数
1、$RANDON, 产生的随机数的范围是0~32767 [root@centos79 test]# echo $RANDOM 6420 [root@centos79 test]# echo $RAN
作者:编程之家 时间:2022-11-26
linux系统中实现文本转置
1、测试数据 [root@centos79 test]# cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 2
作者:编程之家 时间:2022-11-26
linux系统中while循环一次传入多个变量
1、测试数据 [root@centos79 test]# cat reads.list sample01 /home/test/sample01 /home/test/sample01_2.fq.gz
作者:编程之家 时间:2022-11-26
linux系统中将矩形数据转换为一行、一列的形式
1、测试数据 [root@centos79 test]# cat a.txt e t c i w s g g d z c i o n m 2、转换为一行 [root@centos79 test]# c
作者:编程之家 时间:2022-11-26
redhat8重置root密码
1、查看系统 [root@rhel8pc1 test]# hostnamectl Static hostname: rhel8pc1 Icon name: computer-vm Chassis: v
作者:编程之家 时间:2022-11-26
linux系统中对指定列的数据中的字符串进行替换
1、测试数据 [root@PC3 test]# cat a.txt e r e y e u e e e g e 3 h r 1 3 e g e y e e s e e e e e 2、将3-5列中的e
作者:编程之家 时间:2022-11-26
linux系统中将一列数据转换为若干列数据列的顺序不变
1、测试数据 [root@centos79 test]# cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 2
作者:编程之家 时间:2022-11-26
linux系统中scp命令实现服务器之间数据的传输
linux系统中scp命令实现服务器之间数据的传输 1、从本地服务器传输至另一台服务器 测试服务器连通性: [root@centos79 test]# ifconfig | head -n 3 ##
作者:编程之家 时间:2022-11-26
Linux环境变量配置全攻略
来源: https://www.cnblogs.com/youyoui/p/10680329.html 1、环境变量加载顺序 2、环境变量覆盖 Linux环境变量配置 在自定义安装软件的时候
作者:编程之家 时间:2022-11-26
awk命令末尾数字的作用
1、测试数据 [root@centos7 test]# cat a.txt 1 2 3 4 5 6 7 8 9 2、 数字的作用相当于print? [root@centos7 test]# cat a
作者:编程之家 时间:2022-11-26
bash: unlzma: command not found...
1、问题 [root@centos79 test]# unlzma test_chr22.tar.lzma bash: unlzma: command not found... 2、 [root@ce
作者:编程之家 时间:2022-11-26
linux系统中如何将一行数据变为一列
1、测试数据 [root@centos79 test]# cat a.txt 3 s g a e f k n y 2、xargs [root@centos79 test]# cat a.txt 3 s
作者:编程之家 时间:2022-11-26
linux系统中grep -f选项
1、测试数据 [root@centos79 test]# ls a.txt b.txt [root@centos79 test]# cat a.txt e k [root@centos79 test]
作者:编程之家 时间:2022-11-26
linux系统中如何改变文件/目录的所有者和所属组
1、测试数据 [root@centos79 test]# ls [root@centos79 test]# mkdir test1 [root@centos79 test]# touch test1/
作者:编程之家 时间:2022-11-26
linux 系统中如何统计文件列数
1、测试数据 [root@centos79 test]# cat a.txt e r w i s g n c w d h x 2、awk [root@centos79 test]# cat a.txt
作者:编程之家 时间:2022-11-26
centos8如何重启网卡
1、查看系统 [root@centos8pc2 network-scripts]# hostnamectl Static hostname: centos8pc2 Icon name: compute
作者:编程之家 时间:2022-11-26
linux系统中实现对行的批量替换
1、测试数据 [root@PC3 test]# cat a.txt e r e y e u e e e g e 3 h r 1 3 e g e y e e s e e e e e e t s t e
作者:编程之家 时间:2022-11-26
linux系统中paste命令实现列转行
1、单列测试 root@PC1:/home/test2# seq 5 > a.txt root@PC1:/home/test2# cat a.txt 1 2 3 4 5 root@PC1:/ho
作者:编程之家 时间:2022-11-26
Package libxml-2.0 was not found in the pkg-config search path
1、问题 Package libxml-2.0 was not found in the pkg-config search path 2、检查是否有库文件, no root@PC1:/ho
作者:编程之家 时间:2022-11-26
ubuntu无法用putty登录
1、问题 2、解决方法 step1、 apt install openssh-server 。。。。。。 step2、 apt install openssh-client step3、 ps -e
作者:编程之家 时间:2022-11-26
linux系统中如何删除空行
1、测试数据 root@PC1:/home/test/test/test# cat a.txt 1 d f 2 3 f 3 s 8 4 f a d g 8 root@PC1:/home/test/te
作者:编程之家 时间:2022-11-26
linux 系统中查看系统位数
1、 getconf LONG_BIT root@ubuntu02:/home# getconf LONG_BIT 64
作者:编程之家 时间:2022-11-26
linux系统中目录和普通文件无法使用颜色区分解决方法
1、问题, 命名是目录,却无法通过颜色识别 2、解决方法 root@PC1:/test# vim /etc/profile 在配置文件末尾添加ls命令别名,保存退出 3、使用source命令使其立即生
作者:编程之家 时间:2022-11-26
ubuntu 中配置java环境在线软件包
1、内核版本 root@ubuntu02:~# hostnamectl Static hostname: ubuntu02 Icon name: computer-vm Chassis: vm Mac
作者:编程之家 时间:2022-11-26
E: Unable to locate package ubuntu
1、问题:E: Unable to locate package 2、解决方法 。。。。。。 3、测试效果
作者:编程之家 时间:2022-11-26
ubuntu 中配置java环境本地安装包
1、查看系统位数、系统内核 root@ubuntu02:/home# getconf LONG_BIT 64 root@ubuntu02:/home# hostnamectl Static hostn
作者:编程之家 时间:2022-11-26
Bareword "mp4" not allowed while "strict subs" in use at (user-supplied code). ubuntu
1、查看内核 root@PC1:~/GS/lihua/test# hostnamectl Static hostname: PC1 Icon name: computer-vm Chassis: vm
作者:编程之家 时间:2022-11-26
-bash: /usr/local/bin/rar: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
1、问题 [root@PC3 test6]# rar x xiaohou.rar -bash: /usr/local/bin/rar: /lib/ld-linux.so.2: bad ELF inte
作者:编程之家 时间:2022-11-26
linux系统中comm命令的用法
linux中comm命令用于提取两列数据中的唯一项、交集、并集等。 1、测试数据 root@PC1:/home/test/test# ls a.txt b.txt root@PC1:/home/tes
作者:编程之家 时间:2022-11-26
上一页
10
11
12
13
14
15
16
17
下一页
小编推荐
热门标签
更多
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