clear swap memory linux
sudo swapoff -a; sudo swapon -a
clear swap memory linux
sudo swapoff -a; sudo swapon -a
linux swap flush
#!/bin/bash
free_mem="$(free | grep 'Mem:' | awk '{print $7}')"
used_swap="$(free | grep 'Swap:' | awk '{print $3}')"
echo -e "Free memory:\t$free_mem kB ($((free_mem / 1024)) MiB)\nUsed swap:\t$used_swap kB ($((used_swap / 1024)) MiB)"
if [[ $used_swap -eq 0 ]]; then
echo "No swap is in use."
elif [[ $used_swap -lt $free_mem ]]; then
echo "Freeing swap..."
sudo swapoff -a
sudo swapon -a
else
echo "Not enough free memory. Exiting."
exit 1
fi
javascript location object
// Prints complete URL
window.location.href
// Prints protocol like http: or https:
window.location.protocol
// Prints hostname with port like localhost or localhost:3000
window.location.host
// Prints hostname like localhost or www.example.com
window.location.hostname
// Prints port number like 3000
window.location.port
// Prints pathname like /products/search.php
window.location.pathname
// Prints query string like ?q=ipad
window.location.search
// Prints fragment identifier like #featured
window.location.hash
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us