Excited to join this vibrant community! As a retired senior, I love continuous discovery. Passionate about UNIX/LINUX , command line tools, FOSS, and decentralized web apps. 🌐
# Convert case
echo 'example' | tr '[:lower:]' '[:upper:]'
# Delete characters:
echo 'Hello 123' | tr -d '[:digit:]'
# Squeeze repeated characters:
echo 'hiiiiii' | tr -s 'i'
‘tr’ Command in Linux | String Manipulation Guide (ioflood.com)
# Convert case
echo 'example' | tr '[:lower:]' '[:upper:]'
# Delete characters:
echo 'Hello 123' | tr -d '[:digit:]'
# Squeeze repeated characters:
echo 'hiiiiii' | tr -s 'i'
‘tr’ Command in Linux | String Manipulation Guide (ioflood.com)
Did you know that the Unix command line has a built-in calculator? You can use the bc command to perform arithmetic operations, such as bc <<< "2+2" or bc <<< "sqrt". You can also use the expr command for simple calculations, such as expr 2 + 2 or expr 25 / 5.
Did you know that the Unix command line has a built-in calculator? You can use the bc command to perform arithmetic operations, such as bc <<< "2+2" or bc <<< "sqrt". You can also use the expr command for simple calculations, such as expr 2 + 2 or expr 25 / 5.