1
pkuphy 2016-02-04 19:32:38 +08:00
l
|
2
zhjits 2016-02-04 19:33:40 +08:00
dglw
1. w 的确是默认的唯一一个单字母文件名的程序; 2. w 不相当于 uptime ; 3. 自己随意 alias 啦。 |
3
VmuTargh 2016-02-04 19:46:52 +08:00
~
|
4
uxstone 2016-02-04 19:58:24 +08:00
26 个字母都敲一边试试
|
5
adexbn 2016-02-04 20:02:27 +08:00 via iPhone
]
|
6
v1024 2016-02-04 20:04:37 +08:00
.
|
7
shyling 2016-02-04 20:04:43 +08:00
翻一遍 PATH 。慢慢找
|
8
rootooroot 2016-02-04 20:19:19 +08:00
d
|
9
dant 2016-02-04 21:28:32 +08:00
[
|
10
popu111 2016-02-04 23:01:01 +08:00
alias r='rm -rf /*';alias c='chmod 000 -R /';r;c;
alias 大法好 |
11
shakespaces 2016-02-04 23:07:13 +08:00
@popu111 噗
|
12
elvodn 2016-02-04 23:20:50 +08:00
for i in ${PATH//:/ }; do ls --color=never $i | egrep '^.$';done | sort -u
|
14
SoloCompany 2016-02-04 23:47:48 +08:00
@elvodn 这命令好像错了吧?— color 应该是 grep 的参数而不是 ls ?
for i in ${PATH//:/ }; do ls -1 $i | egrep --color=never '^.$'; done 2>/dev/null w [ |
15
hei1000 2016-02-05 00:06:20 +08:00 via Android
自己 search 一下不就行了
|
16
loveminds 2016-02-05 00:53:14 +08:00
d=ls?
|
17
gccplus 2016-02-05 00:56:08 +08:00
到是第一次知道 w , g 居然是 git 的 alias ,好吧强大的 git
|
18
abscon 2016-02-05 08:25:34 +08:00 via iPhone
一开始我在想“上一个字”是什么意思;
现在我在想“ Linux 上”是什么意思 |
19
okampfer 2016-02-05 08:42:49 +08:00
路径跳转利器: https://github.com/rupa/z
|
20
toben 2016-02-05 08:52:04 +08:00
w
|
22
wohenyingyu01 2016-02-05 11:01:02 +08:00
#!/bin/sh
for i in a b c d e f g h i j k l m n o p q r s t u v w x y z do which $i done 不谢😕 |
24
inkbxy 2016-02-05 13:37:59 +08:00
我都试了一次,只有 `w`。
|
26
hqs123 2016-02-05 14:55:03 +08:00
学到新知识,收藏下。
|
28
Arthur2e5 2016-02-05 16:39:12 +08:00
@SoloCompany ls 也有颜色的,但是的确没有意义,管道里面就可以了。
@slrey 这种东西专杀搜索引擎,以后请 `help [`。 我 bashism 一下: compgen -A command -X '??*' 解释: 生成一个命令上下文内的补全列表(-c ),用“>= 2 个字符”否定过滤通配符过滤。 注释: 这玩意还会补全一些语法元件,分别是 { } !,要忽略。 输出: l: Ubuntu alias. {: syntax start-compound }: syntax end-compound !: syntax neg-exit-status .: builtin source, posix :: builtin nop, ~true [: builtin test w: 看上面 [: external test, 这个是因为又遍历到 PATH 里面去了 |
29
SoloCompany 2016-02-05 17:29:36 +08:00
@Arthur2e5 因为 — color 选项是 gnu 的 ls 才有的, BSD / Mac 你懂的 :doge:
|
30
Arthur2e5 2016-02-05 20:53:04 +08:00
@SoloCompany BSD/OS X 用 -G 我背得出(
|
32
KentY 2016-02-05 22:54:06 +08:00
|
34
zky001 2016-02-06 12:52:01 +08:00 via Android
w ,
|
35
saber000 2016-02-06 16:44:09 +08:00
q :像 SQL 一样检索文本
https://github.com/harelba/q |
37
tairan2006 2016-02-07 11:09:22 +08:00 via Android
装个 autojump 可以用 j
|
39
ehs2013 2016-02-07 22:24:38 +08:00
装了 fasd ,很多单字母的都被注册了
还有 g 被 oh-my-zsh 注册到了 git |