$ jrunscript -e 'exit (println(javax.crypto.Cipher.getMaxAllowedKeyLength("AES") >= 256));' Warning: Nashorn engine is planned to be removed from a future JDK release true Windows OS: jrunscript -e "exit (println(javax.crypto.Cipher.getMaxAllowedKeyLength(\"AES\") >= 256));"
Pass it the names of a package or packages to reconfigure. It will ask configuration questions, much like when the package was first installed. If you just want to see the current configuration of a package, see debconf-show instead.
To exclude specific hosts or IP-ranges from a specific ssh configuration, you can simple add an ! before the hostname. Example Host * !goyun.info !192.168.0.? !*.local # config goes here
git remote rm <remote-name> To verify that the remote was successfully removed, use the git remote command to list the remote connections: git remote -v
The following example gets those processes of intertest and passes them to be killed: Example: sudo ps aux | grep some-thing-to-be-killed | sed 's/\s\+/ /g' | cut -d ' ' -f2 | xargs sudo kill -9
mysql --login-path=root -e "SELECT CONCAT('kill ', ID, ';') FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'goyuninfo' AND TIME > 50 AND COMMAND = 'Query';" > kill_query.log