find /var/www/data/logs -name "*.log" -type f -mtime +30 -exec rm -f {} \;
Autor: Alexander Stroschke
Find Files by Age and copy them to another directory
If you work with a lot of files, sometimes there is no way around sorting files, copying them out, deleting them etc. In this case I am looking for certain files, files that are not older than 1 year and want to copy them into another directory.
find . -iname '*.pdf' -type f -mtime -356 | xargs cp -t ../
Here i make use of the convinient pipe system of Linux/Unix |
The first expression (find) finds all files created in the last 365 days. These are then passed to the cp (Copy) command, which copies them into another directory.
The next xargs takes the list of files, transmitted by find and copy them to the parent .folder.
Search with grep and zip file results
If you want to save the files resulting from the grep search in a zip archive, use this command:
grep -lrZ "searchstring" ./ | xargs -0 zip -g nameOfZip.zip
Search for a string in files and save the result
Search all files in this directory and all subdirectories containing a specific string and save the result in a file + 25 characters before and after the file This helps me very often when I have to search huge amounts of data and the terminal window can’t handle the result.
grep -r -o -P '.{0,25}searchstring.{0,25}' ./ > ~/search_result.txt
-r = recursive
-o = only matching, just the fitting line
-P = use Perl regular expressions
./ = in the actual directory
The > saves all output into a specifc file, in this case, its inside your homedirectory ~
Zip files and exclude subdirectories
zip -r zipfile.zip directoryToZip -x directoryToZip /subdirectoryToExclude/* directoryToZip/SecondSubdirectoryToExclude /*
Encrypt Bitlocker Drive in Linux
This is a very small howto on how to mount an NTFS drive encrypted with Bitlocker under Linux.
install dislocker (hdd name is merkur, 1TB usb drive)
Find the devicename of the encrypted bitlocker drive
fdisk -lEncrypt Bitlocker Drive in Linux weiterlesen
Show me directories with the largest disc usage.
du -a ./ | sort -n -r | head -n 20
Its always searching for the directories with the most diskusage from the actual directory, sorted by usage. It shows the first 20 Lines
Docker commands to clear some things
To clear containers:
docker rm -f $(docker ps -a -q)
To clear images:
docker rmi -f $(docker images -a -q)
To clear volumes:
docker volume rm $(docker volume ls -q)
To clear networks:
docker network rm $(docker network ls | tail -n+2 | awk '{if($2 !~ /bridge|none|host/){ print $1 }}')
Odoo Form View
<odoo> <data> <record id="extend_view" model="ir.ui.view"> <field name="name">Extend model view</field> <field name="model">model.name</field> <field name="inherit_id" ref="base.view.ref"/> <field name="arch" type="xml"> <xpath expr="//page[last()]" position='after'> <page string="Extra field"> <group string="Extra group title"> <field name="field_name"/> </group> </page> </xpath> </field> </record> </data> <odoo>
https://snippets.cacher.io/snippet/6262025fc18cc12fecee
How to make a nice form view for an odoo module.
SSH-AGENT – Einfache SSH Loginverwaltung
Der SSH Agent ist ein Hilfsprogramm, das die Identitätsschlüssel des Benutzers und seine Passphrasen verfolgt. Der Agent kann sich dann mit den Schlüsseln bei anderen Servern anmelden, ohne dass der Benutzer erneut ein Passwort oder eine Passphrase eingeben muss. Dies implementiert eine Form des Single Sign-On (SSO).