
linux
leiweip
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
awk 按照顺序合并两个命令执行结果
a 文件内容[root@server272 home]# cat a.txt aaa bbb ccc dddb文件内容[root@server272 home]# cat b.txt 1 a 2 b 3 c合并结果[root@server272 home]# sh test.sh 1 a aaa 2 b bbb 3 c ccctest.sh脚本内容#!/bin/bashcopyIds=原创 2020-05-20 19:45:09 · 1083 阅读 · 0 评论 -
在linux自定义协议,让浏览器可以调用本地程序
在linux自定义协议,让浏览器可以调用本地程序第一种是在gnome桌面环境下,执行以下步骤 并且重启系统gconftool-2 -t string -s /desktop/gnome/url-handlers/foo/command 'foo "%s"' gconftool-2 -s /desktop/gnome/url-handlers/foo/needs_terminal fals...原创 2019-03-07 21:48:44 · 7789 阅读 · 24 评论