https://www.linuxjournal.com/content/writing-secure-shell-scripts
The first "What file do you seek?" example is safe. I tried it in bash 4.4
:
cd "$(mktemp -d)"
cat > script <<EOF
echo -n "What file do you seek? "
https://www.linuxjournal.com/content/writing-secure-shell-scripts
The first "What file do you seek?" example is safe. I tried it in bash 4.4
:
cd "$(mktemp -d)"
cat > script <<EOF
echo -n "What file do you seek? "
This is a patch to the VPN Indicator Gnome Shell Extension to make it work for the SNX VPN.
Links for the VPN Indicator Gnome Shell Extension:
VPN Indicator
https://extensions.gnome.org/extension/1134/vpn-indicator/
Sometimes a programming language has a "strict mode" to restrict unsafe constructs. E.g., Perl has use strict
, Javascript has "use strict"
, and Visual Basic has Option Strict
. But what about bash? Well, bash doesn't have a strict mode as such, but it does have an unofficial strict mode:
set -euo pipefail
set -e
Switch to Liberation from DejaVu for better font-handling in Firefox
Test page: https://en.wikipedia.org/wiki/User:Kaldari/Font_test
Firefox defaults to the system defaults, so it's best to make the change at the system level than in Firefox preferences.
First, check current defaults
for family in serif sans-serif monospace Arial Helvetica Verdana "Times New Roman" "Courier New"; do
I needed to download Oracle JDBC jar files for use with my database query tool. Oracle JDBC drivers have been available in the public official Maven repository since September 15, 2019. They extended it to include all supported releases in February, 2020. (link1 [link2] [link3] [link4]).
I've found that pasting into a Google Document produces an unexpected result.
Copy the following minimal test case:
A link
and paste it into a GDoc.
Related issue: