mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-05-02 18:14:52 -04:00
remove-system.map: lower verbosity output
This commit is contained in:
parent
cce35e5109
commit
9bbae903fe
1 changed files with 3 additions and 1 deletions
|
@ -26,7 +26,9 @@ fi
|
|||
## Removes the System.map files as they are only used for debugging or malware.
|
||||
for filename in ${system_map_location} ; do
|
||||
if [ -f "${filename}" ]; then
|
||||
shred --verbose --force --zero -u "${filename}"
|
||||
## 'shred' with '--verbose' is too chatty. (7 lines)
|
||||
shred --force --zero -u "${filename}"
|
||||
echo "removed '${filename}'"
|
||||
fi
|
||||
done
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue