Skip to content

Instantly share code, notes, and snippets.

@iamkissg
Last active May 5, 2022 00:52
Show Gist options
  • Save iamkissg/a5489cf805c08138b6003dd15e4b4004 to your computer and use it in GitHub Desktop.
Save iamkissg/a5489cf805c08138b6003dd15e4b4004 to your computer and use it in GitHub Desktop.
A collection of helpful linux commands

repeat line multiple times

perl -ne 'print $_ x 3' file
# or
!awk '{for (i = 1; i <= 3; i++) print $0}' file

Auto sync updates to Github

cd /<your path>
git add .
git commit -m "auto save:Update some logseq pages."
git push origin main
# chmod 777 this_script.sh
# +crontab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment