wiki

knowledgebase of randomness
git clone git://parazyd.org/wiki.git
Log | Files | Refs

Shell.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