tShell.wiki - wiki - knowledgebase of randomness
HTML git clone git://parazyd.org/wiki.git
DIR Log
DIR Files
DIR Refs
---
tShell.wiki (203B)
---
1 = Shell Programming Knowledgebase =
2
3 * [[zsh]]
4 * [[posix]]
5
6
7 == Random Oneliners ==
8
9 === Find world-writable files (excluding symlinks) ===
10 {{{shell
11 find /var/www -perm -o+w -a -not -type l -ls
12 }}}
13
14