851 links
  • Links Lounge
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
31 results tagged CommandLine x
  • How to Compress PDF in Linux [GUI & Terminal]

    gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=compressed_PDF_file.pdf input_PDF_file.pdf

    Par ordre décroissant de qualité : /prepress, /ebook ou /screen

    Sat 16 Dec 2023 05:17:15 PM CET - permalink -
    - - - https://itsfoss.com/compress-pdf-linux/
    CommandLine PDF
  • Command Line 101 – Tookmund – A place for my random thoughts about software
    Tue 01 Sep 2020 08:13:40 AM CEST - permalink -
    - - - https://tookmund.com/2020/08/command-line-101
    CommandLine Linux
  • Ma quête d'un petit cloud perso - Alternative · Seb Sauvage Link

    Ma quête du moment est similaire (avec moins de données quand même) et j'étais resté bloqué sur "Comment je vais faire de vrai backup au lieu d'un rscync ?". Merci pour le partage, je vais regarder Borgbackup. Voire réfléchir à un RaspberryPi qui allume/éteint le backup 1 et le fait automatiquement...

    Mon 02 Jul 2018 01:57:59 PM CEST - permalink -
    - - - http://sebsauvage.net/wiki/doku.php?id=cloud#l_alternative
    Backup Bord CommandLine Linux OnMyServer
  • linux - Raw capture capabilities (CAP_NET_RAW, CAP_NET_ADMIN) not working outside /usr/bin and friends for packet capture program using libpcap - Stack Overflow

    Rah!

    Thu 28 Jun 2018 09:58:27 AM CEST - permalink -
    - - - https://stackoverflow.com/questions/29099797/raw-capture-capabilities-cap-net-raw-cap-net-admin-not-working-outside-usr-b#30826137
    CommandLine ip Linux pcap
  • linux - Insert multiple lines into a file after specified pattern using shell script - Stack Overflow

    Insert in place with regex:

    sed -e -i '/pattern/r file.txt' input.txt
    Thu 14 Dec 2017 01:40:52 PM CET - permalink -
    - - - https://stackoverflow.com/questions/22497246/insert-multiple-lines-into-a-file-after-specified-pattern-using-shell-script
    bash CommandLine Linux Qompoter sed
  • rclone

    A regarder.

    via SebSauvage.

    Wed 04 Oct 2017 01:50:53 PM CEST - permalink -
    - - - https://rclone.org
    CommandLine hubiC Linux rclone
  • Bash scripting cheatsheet
    Wed 04 Oct 2017 01:29:12 PM CEST - permalink -
    - - - https://devhints.io/bash
    Bash CheatSheet CommandLine Linux Shell
  • sed and Multi-Line Search and Replace – Austin Matzko's Blog
    1h;1!H;${;g;s/<h2.*</h2>/No title here/g;p;}
    Wed 04 Oct 2017 01:28:48 PM CEST - permalink -
    - - - http://austinmatzko.com/2008/04/26/sed-multi-line-search-and-replace/
    bash CommandLine Linux Qompoter sed
  • regular expression - How can I use sed to replace a multi-line string? - Unix & Linux Stack Exchange

    Sed sur plusieurs lignes ? Galère.

    Sat 30 Sep 2017 11:40:40 AM CEST - permalink -
    - - - https://unix.stackexchange.com/questions/26284/how-can-i-use-sed-to-replace-a-multi-line-string#26290
    CommandLine Linux Regex sed
  • Ansible : mes premiers pas | memo-linux.com
    Tue 29 Aug 2017 12:53:15 PM CEST - permalink -
    - - - https://memo-linux.com/ansible-mes-premiers-pas/
    Ansible CommandLine Linux Server
  • copy paste in tmux | Awhan Patnaik

    1) enter copy mode using Control+b [
    2) navigate to beginning of text, you want to select and hit Space
    3) move around using arrow keys to select region
    4) when you reach end of region simply hit Enter to copy the region
    5) now Control+b ] will paste the selection

    Thu 15 Jun 2017 09:47:51 AM CEST - permalink -
    - - - https://awhan.wordpress.com/2010/06/20/copy-paste-in-tmux/
    CommandLine Linux tmux
  • Clang-Tidy, part 1: Modernize your source code using C++11/C++14 - KDAB
    Mon 15 May 2017 11:01:08 AM CEST - permalink -
    - - - https://www.kdab.com/clang-tidy-part-1-modernize-source-code-using-c11c14/
    C++ Clang CommandLine
  • Bash scripting quirks & safety tips - Julia Evans

    https://jvns.ca/blog/2017/03/26/bash-quirks/
    http://www.kfirlavi.com/blog/2012/11/14/defensive-bash-programming/
    http://mywiki.wooledge.org/BashGuide/Practices
    https://cmdchallenge.com/#/extract_ip_addresses

    Mon 15 May 2017 10:58:17 AM CEST - permalink -
    - - - https://jvns.ca/blog/2017/03/26/bash-quirks/
    Bash CommandLine Shell
  • Slow down your internet with tc - Julia Evans
    Tue 04 Apr 2017 01:07:11 PM CEST - permalink -
    - - - https://jvns.ca/blog/2017/04/01/slow-down-your-internet-with-tc/
    CommandLine Linux Network Réseau tc
  • Commandes utiles en vrac - Documentation - Wiki - Linuxtricks · Seb Sauvage Link

    sleep 1; xset dpms force off

    Wed 04 Jan 2017 09:15:04 AM CET - permalink -
    - - - http://www.linuxtricks.fr/wiki/commandes-utiles-en-vrac
    CommandLine Linux
  • Oh, shit, git! - via Seb Sauvage

    Something wrong

    git reflog
    # you will see a list of every thing you've done in git, across all branches!
    # each one has an index HEAD@{index}
    # find the one before you broke everything
    git reset HEAD@{index}
    # magic time machine

    I accidentally committed to the wrong branch!

    # undo the last commit, but leave the changes available
    git reset HEAD~ --soft
    git stash
    # move to the correct branch
    git checkout name-of-the-correct-branch
    git stash pop
    git add . # or add individual files
    git commit -m "your message here"
    # now your changes are on the correct branch

    Oui, quelqu'un paie un nom de domaine chaque année pour ça. Merci quand même :-)

    Mon 12 Sep 2016 01:45:17 PM CEST - permalink -
    - - - http://ohshitgit.com/
    CommandLine Git
  • Terminal (Bash) arguments tricks - Jordi Boggiano

    Gah !

    # !$ references the last argument of the previous command.
    mate _posts/2011/2011-04-12-terminal-strings.mdown
    git add !$
    tumblr !$
    
    # Now more complex, let's copy the second argument
    # !! references the last command, and :2 the second arg. 
    echo foo bar baz
    echo !!:2 # outputs "bar"
    
    # Batshit crazy
    # !?baz? references the last command containing baz, :0-1 grabs the two first args
    echo !?baz?:0-1 # should output "echo foo"
    Tue 09 Aug 2016 09:22:22 AM CEST - permalink -
    - - - https://seld.be/notes/terminal-arguments-tricks
    CommandLine Linux Shell
  • Guide d'utilisation du Shell pour débutant

    cd : revenir dans le répertoire personnel
    cd - : revenir dans le répertoire précédent (uniquement si vous avez exécuter un cd)

    Ctrl+l : effacer l'écran
    Ctrl+c : arrêt d'une commande
    Ctrl+z : suspendre(mettre en pause) une commande
    CTRL+t : corréction d'une erreur de frappe en inversant 2 lettres
    Ctrl+a : aller au début de ligne
    Ctrl+e : aller à la fin de ligne
    Ctrl+s : interruption de la sortie de terminal (masquer la saisie)
    Ctrl+q : annuler l'interruption de la sortie (afficher la saisie)
    Ctrl+u : efface tout à gauche du curseur
    Ctrl+w : efface le mot à gauche du curseur
    Ctrl+k : efface le mot à droite du curseur
    Ctrl+y : coller la saisie précédente
    Ctrl+d : efface le caractère courant, si la ligne est vide deconnexion

    Alt+b : se déplacer en avant, mot par mot dans la ligne de commande
    Alt+f : se déplacer en arrière mot par mot dans la ligne de commande
    Alt+d : efface le mot suivant
    Alt+t : échange le mot courant avec le mot précédent
    Alt+c : met en majuscule la lettre courante, tout le reste dut mot courant en minuscules, puis se deplace au mot suivant
    Alt+l : met en majuscules à partir de la lettre courante jusqu'à la fin de mot, puis se deplace au mot suivant
    Alt+u : met en minuscules à partir de la lettre courante jusqu'à la fin de mot, puis se deplace au mot suivant

    Alt+Backspace : effacer le mot précédent (équivalent Ctrl+w)

    Fri 20 May 2016 10:26:19 AM CEST - permalink -
    - - - http://www.commentcamarche.net/faq/4801-guide-d-utilisation-du-shell-pour-debutant
    CommandLine Linux Shell
  • ssh forwarding

    Tunnel SSH pour rediriger des ports, tout en passant par un proxy ><

    Tue 17 May 2016 10:49:25 AM CEST - permalink -
    - - - http://aplawrence.com/Security/ssh_forwarding.html
    CommandLine Linux SSH
  • rdesktop and Windows Server 2012 - Links Lounge - Les petits liens d'Alda

    Merci de ces informations ! Je comprends mieux le lien Remmina / freerdp.

    Je ne savais pas pour rdesktop. J'ai regardé et c'est en fait grdesktop (une GUI, dernière màj datant de mars) qui n'offre pas l'option adaptée. Je n'avais fait qu'un test rapide avec rdesktop en ligne de commande.

    Fri 14 Aug 2015 01:32:52 PM CEST - permalink -
    - - - http://tools.aldarone.fr/share/?Cv8dfQ
    CommandLine RDP
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation