Skip to content

Instantly share code, notes, and snippets.

@deviousway
deviousway / Listing all process swap space usage sorted.md
Last active August 17, 2018 01:50
Listing all process swap space usage sorted
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | less
@deviousway
deviousway / gist:852a01062b244206744a2c8edd1babad
Created October 8, 2021 06:44
Ansible remove dot from variable with version
php_version: 7.4
php_version_redhat: "{{ php_version | regex_replace ('[.~]', '') }}"
###Will return
###"msg": 74