There are several programs to do that:
- wipe
- srm
- dd
- shred
- scrub
https://linuxhint.com/completely_wipe_hard_drive_ubuntu/
There are several programs to do that:
https://linuxhint.com/completely_wipe_hard_drive_ubuntu/
If you use less as pager for man you can try
LESS="+/^\s+-b" man wget
where
+ symbol to execute next operation after less has opened/ command to start search^\s+-b regexp to match -b from start of lineSo if you like you can arrange the apropriate function for shell
function rman {
#USAGE: rman programm.name option.to.search (with "-" symbol)
LESS="+/^\s+$2" man "$1"
}
and add it into ~/.bashrc for example.
For zip-files:
find <path_of_your_zips> -type f -name "*.zip" -exec unzip {} -d <out> \;
https://askubuntu.com/questions/620571/how-do-i-gunzip-all-files-recursively-in-a-target-directory
You can open the LibreOffice window completely by pressing the CTRL+Shift+J keys together.