Skip to content
Quentin Adt's Notes
The blog of Quentin Adt
SEO Development Digital Nomad About Me :)
Quentin Adt's Notes
The blog of Quentin Adt

Category: Shell linux

Remote File Sharing : A One-Command HTTPS Server Solution for SSH Users

June 28, 2024

Do you often need to quickly retrieve output files from scripts executed over SSH? Something like this if you have the file name in the clipboard: Or even like this if you don’t have it: With the following features: How to install it ? Put the code bellow in the .bashrc file for instance to […]

Quentin Adt comment 0 Comments

Shell linux AWK: Addition of the 2nd column separated by tabs

January 22, 2015

awk -F’t’ ‘{a+=$2}END{printf “%in”,a}’

Quentin comment 0 Comments

Shell Linux: Sort on 2nd column with tab separated content

January 22, 2015

sort -t t’ -n -k2

Quentin comment 0 Comments