5 lines
73 B
Bash
5 lines
73 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
rm -fr `ls -1a|grep -v ^32-|grep -v '^\.$'|grep -v '^\.\.$'`
|
||
|
|
|