手机版
热门标签
站点地图
我要投稿
广告合作
联系我们
搜 索
广告位招租
广告位招租
切换导航
首页
编程教程
编程导航
编程百科
编程问答
编程博文
编程实例
硬件设备
网络运营
软件教程
移动数码
办公软件
操作系统
人工智能
栏目导航
▸ 编程语言
▸ 前端开发
▸ 移动开发
▸ 开发工具
▸ 程序设计
▸ 行业应用
▸ CMS系统
▸ 服务器
▸ 数据库
公众号推荐
微信公众号搜
"智元新知"
关注
微信扫一扫可直接关注哦!
子栏目导航
Linux
Windows
CentOS
Ubuntu
Nginx
WebService
Scala
Memcache
Apache
Redis
Docker
Bash
Azure
Tomcat
LNMP
Shell
Ansible
KVM虚拟机
数据结构
鸿蒙系统
宝塔面板
服务器运维
网络安全
编程之家
Shell
linux中 sort -h的作用
1、 root@PC1:/home/test2# ls b.ped outcome.map outcome.ped xx root@PC1:/home/test2# du -ah ## 显示每一个文件
作者:编程之家 时间:2022-11-26
linux系统croc命令在电脑之间传输文件和文件夹
1、croc安装 方法1: curl https://getcroc.schollz.com | bash 方法2(ubuntu): gdebi croc_8.3.2_Linux-64bit.deb
作者:编程之家 时间:2022-11-26
ubuntu apt install 慢的解决办法
1、问题 apt install 慢, 如下: root@ubuntu01:/home/test# apt install git 2、解决方法 root@ubuntu01:/home/test# c
作者:编程之家 时间:2022-11-26
linux sort命令 -g选项
sort命令 -g选项忽略字母 1、测试数据 root@PC1:/home/test# ls a.txt root@PC1:/home/test# cat a.txt name gender scor
作者:编程之家 时间:2022-11-26
linux shell实现将匹配字符行的最后一个字符替换为指定字符
1、测试数据 root@PC1:/home/test/test# ls test.txt root@PC1:/home/test/test# cat test.txt ## 实现将每行最后一个e替换为
作者:编程之家 时间:2022-11-26
linux shell中利用列数筛选数据
1、测试数据,依据列数筛选数据 root@PC1:/home/test# ls test.txt root@PC1:/home/test# cat test.txt ## 测试数据 2 3 4 3 d
作者:编程之家 时间:2022-11-26
linux shell 实现将顺序数字重复指定次数
1、将1至4各重复3次, shell双循环实现 root@ubuntu01:/home/test2# ls root@ubuntu01:/home/test2# for i in `seq 4`; d
作者:编程之家 时间:2022-11-26
linux shell实现将每隔一个空格的两列并排为一列
1、测试数据 root@PC1:/home/test# ls outcome.ped root@PC1:/home/test# cat outcome.ped ## 测试数据, 将每隔一个空格的两列并
作者:编程之家 时间:2022-11-26
linux 实现两个文件指定列的替换
1、 root@PC1:/home/test2# ls test1.txt test2.txt root@PC1:/home/test2# cat test1.txt 01 02 03 04 05 0
作者:编程之家 时间:2022-11-26
linux中grep命令匹配制表符
1、测试数据 root@DESKTOP-1N42TVH:/home/test# ls a.txt root@DESKTOP-1N42TVH:/home/test# cat a.txt d e u d
作者:编程之家 时间:2022-11-26
linux awk命令忽略大小写
linux awk忽略大小写 root@DESKTOP-1N42TVH:/home/test# ls test.txt root@DESKTOP-1N42TVH:/home/test# cat tes
作者:编程之家 时间:2022-11-26
linux 中实现按列的索引循环
1、 root@DESKTOP-1N42TVH:/home/test# ls a.txt root@DESKTOP-1N42TVH:/home/test# cat a.txt i A Em F d q
作者:编程之家 时间:2022-11-26
linux中如何删除行首和行尾的空格或者制表符
1、测试数据 root@DESKTOP-1N42TVH:/home/test# ls a.txt root@DESKTOP-1N42TVH:/home/test# cat a.txt d w g s
作者:编程之家 时间:2022-11-26
linux 中删除当前目录下指定文件外所有的文件
1、ls + grep + xargs 实现 a、 root@DESKTOP-1N42TVH:/home/test# touch test{1..10}.txt root@DESKTOP-1N42TV
作者:编程之家 时间:2022-11-26
python中提取包含特定字符的行、以指定字符开头、结尾的行
1、测试数据及脚本 root@DESKTOP-1N42TVH:/home/test# ls test.py test.txt root@DESKTOP-1N42TVH:/home/test# cat
作者:编程之家 时间:2022-11-26
linux中tr命令
tr用来转换或者删除一段文字。 1、实现大小写转换 root@DESKTOP-1N42TVH:/home/test# ls a.txt root@DESKTOP-1N42TVH:/home/test#
作者:编程之家 时间:2022-11-26
linux awk命令统计多个文件的总行数
1、测试数据 root@DESKTOP-1N42TVH:/home/test# ls test.txt test2.txt root@DESKTOP-1N42TVH:/home/test# cat t
作者:编程之家 时间:2022-11-26
linux系统中如何精确匹配0
1、测试数据 root@DESKTOP-1N42TVH:/home/test/test# cat test.txt 2013 2014 2013 2014 1 1.3 0 0 0.9 1.7 0 0
作者:编程之家 时间:2022-11-26
linux系统中sort命令 -V 选项对字符数字组合字符串进行排序
1、测试数据 root@DESKTOP-1N42TVH:/home/test2# cat test.txt Chr1 Chr11 Chr7 Chr8 Chr10 Chr2 Chr5 Chr3 Chr4
作者:编程之家 时间:2022-11-26
linux 系统中awk 字符串处理函数
1、sub、gsub root@DESKTOP-1N42TVH:/home/test# ls test.txt root@DESKTOP-1N42TVH:/home/test# cat test.tx
作者:编程之家 时间:2022-11-26
linux awk命令实现批量列的字符串替换
1、直接测试 root@DESKTOP-1N42TVH:/home/test# ls test.txt root@DESKTOP-1N42TVH:/home/test# cat test.txt ##
作者:编程之家 时间:2022-11-26
linux中如何删除^M符号
1、测试数据 root@DESKTOP-1N42TVH:/home/test2# ls outcome.map root@DESKTOP-1N42TVH:/home/test2# cat -A out
作者:编程之家 时间:2022-11-26
linux中实现将多个连续的字符拆分为单个字符
1、 root@DESKTOP-1N42TVH:/home/test# ls outcome.map root@DESKTOP-1N42TVH:/home/test# cat outcome.map
作者:编程之家 时间:2022-11-26
Err:12 http://security.ubuntu.com/ubuntu focal-updates/main amd64 openjdk-11-jre-headless amd64 11.0.11+9-0ubuntu2~20.04 404 Not Found [IP: 91.189.88.152 80]
1、问题 Err:12 http://security.ubuntu.com/ubuntu focal-updates/main amd64 openjdk-11-jre-headless amd64
作者:编程之家 时间:2022-11-26
linux awk命令中如何提取任意列
1、测试数据 root@PC1:/home/test2# cat test.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 2
作者:编程之家 时间:2022-11-26
ubuntu 编译报错 configure: error: You need zlib >= 1.2.3 to build bin/PopLDdecay
1、内核版本 root@DESKTOP-1N42TVH:/home/software/PopLDdecay# cat /etc/issue Ubuntu 20.04.3 LTS \n \l root@
作者:编程之家 时间:2022-11-26
gz文件压缩、解压缩保留源文件
1、 root@DESKTOP-1N42TVH:/home/test2# ls outcome.map root@DESKTOP-1N42TVH:/home/test2# gzip -c outcom
作者:编程之家 时间:2022-11-26
linux中如何删除空行
1、测试数据 root@DESKTOP-1N42TVH:/home/test# ls a.txt root@DESKTOP-1N42TVH:/home/test# cat a.txt i A E F
作者:编程之家 时间:2022-11-26
linux 中依据某一列进行去重复
1、 root@DESKTOP-1N42TVH:/home/test# ls test.txt root@DESKTOP-1N42TVH:/home/test# cat test.txt chr1 s
作者:编程之家 时间:2022-11-26
linux awk命令实现对数据的每一列进行求和、求平均
1、测试数据 root@PC1:/home/test# ls test.txt root@PC1:/home/test# cat test.txt 3 4 2 9 1 3 5 4 3 7 8 4 2
作者:编程之家 时间:2022-11-26
上一页
12
13
14
15
16
17
18
19
下一页
小编推荐
热门标签
更多
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