6 lines
119 B
Bash
Executable File
6 lines
119 B
Bash
Executable File
#!/bin/sh
|
|
# remove all docs
|
|
|
|
rpmquery -ad |grep ^/ |xargs -r rm -f --
|
|
rm -rf /usr/share/{doc,man,info,license,gfxboot}
|