Shaare your links...
3022 links
Httqm's Links Home Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 1 / 3
54 results for tags Shell x
  • shutdown / reboot / halt / poweroff
    Tue Jan 5 06:49:22 2021 - permalink -
    - https://www.cyberciti.biz/faq/restart-centos-rhel-safely-and-gracefully/
    Linux Shell
  • Pimp my terminal
    Some interesting hacks to change the terminal look & feel
    Tue Jun 9 06:41:25 2020 - permalink -
    - https://drasite.com/blog/Pimp%20my%20terminal
    Git Hack Shell
  • Gérer plus confortablement les certificats SSL/TLS Let’s Encrypt
    Thu Mar 26 09:41:42 2020 - permalink -
    - https://blog.microlinux.fr/letsencrypt-script/
    Git Shell SSL TLS
  • Decoded: GNU coreutils
    What's under the hood of GNU core utilities ? Very interesting diagrams built after reading the source code.
    Wed Jul 3 09:55:31 2019 - permalink -
    - https://www.maizure.org/projects/decoded-gnu-coreutils/index.html
    GNU Shell utilities
  • Dans la tête d’un hacker chinois… – IneatConseil
    Très intéressant.

    Astuce en fin d'article qui peut sauver des vies :
    Beaucoup de malwares utilisent pastebin.com pour délivrer leurs charges utiles. Dans le cas où l’utilisation de ce site n’est pas prévue de manière nominale pour le serveur, il peut être conseillé de bloquer tout le trafic depuis et vers ce site. C’est facilement réalisable avec cette commande sous Linux :

       echo -e "\n0.0.0.0 pastebin.com " >> /etc/hosts
    Fri Jun 7 15:07:54 2019 - permalink -
    - https://blog.ineat-conseil.fr/2019/06/dans-la-tete-dun-hacker-chinois/
    Hack Malware Security Shell
  • Awk : "print" vs "printf"
    Thu Mar 28 22:08:01 2019 - permalink -
    - https://doc.callmematthi.eu/awk.html#awkPrintPrintfSprintf
    awk Doc_updates Shell
  • What if the best quality audio and video tracks are in distinct YouTube streams ?
    Here's how to reconstruct a high quality audio + video file !
    Thu Jan 31 21:16:25 2019 - permalink -
    - http://doc.callmematthi.eu/youtube-dl.html#bestQualityAudioVideoDistinctsYoutubeStreams
    avconv Doc_updates Hack Shell YouTube
  • How to escape single quotes within single quoted strings?
    TL;DR :
    use : '"'"'" (ie : single + double + single + double + single quote)

    Details in the article.
    Thu Jan 24 14:51:25 2019 - permalink -
    - http://doc.callmematthi.eu/BashScripting_howTo.html#escapeSingleQuoteswithinSinglequotedStrings
    Bash Doc_updates Hack Shell
  • Vulnerable Machines
    Interesting details about privileges escalation
    Mon Dec 3 14:21:07 2018 - permalink -
    - https://bitvijays.github.io/LFC-VulnerableMachines.html#linux-privilege-escalation
    Linux Security Shell
  • Read-only TMOUT variable, how to workaround and disable automatic logout ?
    Fri Nov 9 07:35:15 2018 - permalink -
    - http://doc.callmematthi.eu/shell_howTo.html#readOnlyTmoutWorkaroundAutoLogout
    Doc_updates Hack Shell
  • How to mount / umount a SFTP directory ?
    sshfs FTW !
    Sat Oct 27 08:34:06 2018 - permalink -
    - http://doc.callmematthi.eu/ssh.html#mountSftpDirectory
    Doc_updates Linux Shell SSH
  • Ouvrir rapidement un invite de commande dans le dossier courant de l'explorateur
    TL;DR : remplacer le contenu de la barre d'adresse par "cmd" + ENTER

    Pas sûr que ça me serve souvent, mais okazou ;-)

    (via : http://bookmarks.ecyseo.net/?JXd5Kg)
    Tue Apr 17 10:13:32 2018 - permalink -
    - http://www.kevinsubileau.fr/informatique/astuces-tutoriels/ouvrir-invite-commande-cmd-dossier-courant-explorateur.html
    Shell Tips Windows
  • cURL : What does "additional stuff not fine transfer.c:1037: 0 0 mean" ?
    Wed Mar 21 18:57:58 2018 - permalink -
    - http://doc.callmematthi.eu/cURL.html#additionalStuffNotFineTransfer.c:1037
    Doc_updates Shell
  • Note : If you write software...
    If you write software, config files, makefiles, test cases, or any part of the software delivery ecosystem with hardwired paths to things embedded in them, you are officially a big bozo. Not the fun kind with a red nose and big shoes either. The only hardwired path that's OK is /bin/sh on a shebang line. But if you do things like this:

       #!/usr/bin/python

    You should be sent to work 1st level phone support on the midnight shift in Somalia until you learn better. Grrrrrr.

    This is the right way to do this is:

       #!/usr/bin/env python

    env can reliably be found there and it will "discover" where python happens to actually be installed on that machine, so long as it is in $PATH somewhere. Similarly, learn to use constructs like:

       DATE=$(which date)

       DATE=${DATE:-/bin/date}

    In short, NEVER make assumptions where things are. Always discover it at configuration time.
    Thu Dec 28 09:24:55 2017 - permalink -
    - https://www.tundraware.com/TechnicalNotes/Divorce-Your-Linux-Admin/
    Bash Best_Practice Coder_Proprement Development Shell
  • bc(1): arbitrary precision calculator language - Linux man page
    TIL that "bc" can be used interactively :

    bc[ENTER]
    1+1[ENTER]
    ==> 2 \o/

    To leave : [CTRL]-[d]

    And for the nostalgics of the reverse-polish notation, there is still "dc" :-)
    See https://unix.stackexchange.com/questions/124518/how-is-bc-different-from-dc#124524
    Mon Nov 6 12:43:35 2017 - permalink -
    - https://linux.die.net/man/1/bc
    App ESRA Linux Maths Shell
  • Bash : where does the TERM environment variable default get set?
    Thu Nov 3 13:54:54 2016 - permalink -
    - http://unix.stackexchange.com/questions/198794/where-does-the-term-environment-variable-default-get-set
    Bash Shell
  • Exploring CLI Best Practices
    Some wise advice ;-)

    See also http://docopt.org/ for details on optional, required, mutually exclusive, and repeating elements in the command line
    Wed Oct 12 15:01:24 2016 - permalink -
    - http://eng.localytics.com/exploring-cli-best-practices/
    Best_Practice CLI Shell
  • Que faire après un "mv /* <ailleurs>" ?
    Un jour ou l'autre, on est un boulet...

    Certaines astuces sauvent des vies :-D
    Tue May 10 17:33:59 2016 - permalink -
    - http://doc.callmematthi.eu/Linux.html#accidentMoveSlashStar
    Doc_updates Linux Shell
  • Have fun with the Linux shell
    me@localhost:~# %blow
    bash: fg: %blow: no such job
    Thu Apr 28 15:33:06 2016 - permalink -
    - http://www.tecmint.com/20-funny-commands-of-linux-or-linux-is-fun-in-terminal/
    Bash Blagues Shell
  • Bash on Windows: a hidden bitcoin goldmine?
    BTW, it's still in beta, so this _may_ be fixed by the release time...
    Mon Apr 18 14:11:19 2016 - permalink -
    - https://ma.ttias.be/bash-windows-hidden-bitcoin-goldmine/
    Bash Malware Shell Windows
Links per page: 20 50 100
◄Older
page 1 / 3
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.