4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
7 results tagged bashrc x
  • Note: Learn a command on each new shell open.

    echo 'man $(ls /usr/bin | shuf -n 1)| sed -n "/^NAME/ { n;p;q }"' >> ~/.bashrc # Learn a command on each new shell open.

    via @climagic

    February 10, 2016 at 4:30:27 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?kL3CzA
    bashrc man
  • Marks

    Je ne sais plus ou j'ai vu ça, je ne retrouve plus le lien donc je me le remets ici au cas où

    #Marks
    export MARKPATH=$HOME/.marks
    function jump {
    cd -P "$MARKPATH/$1" 2>/dev/null || echo "No such mark: $1"
    }
    function mark {
    mkdir -p "$MARKPATH"; ln -s "$(pwd)" "$MARKPATH/$1"
    }
    function unmark {
    rm -i "$MARKPATH/$1"
    }
    function marks {
    ls -l "$MARKPATH" | sed 's/ / /g' | cut -d' ' -f9- | sed 's/ -/\t-/g' && echo
    }

    June 12, 2015 at 11:29:15 AM GMT+2 - permalink - archive.org - https://links.infomee.fr/?XYagKw
    bash bashrc mark
  • Afficher l'original d'un fichier qui provient d'un package sous debian en une commande

    à mettre dans son bashrc

    showOriginal() {

    argument = complete path to a file

    output original file content

    packageName=$(dpkg -S $1|cut -d':' -f1)
    tmpdir="/tmp/showOriginal-$packageName-$(date +%s)"
    mkdir $tmpdir
    cd $tmpir
    apt-get download $packageName > /dev/null
    dpkg -x *.deb $tmpdir
    cat ${tmpdir}$1
    cd - >/dev/null
    rm -rf $tmpdir
    }

    September 26, 2014 at 4:59:47 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?tdQ_tA
    bash bashrc script
  • Extract most know archives with one command | alias.sh
    February 4, 2013 at 10:43:30 PM GMT+1 - permalink - archive.org - http://alias.sh/extract-most-know-archives-one-command
    alias bash bashrc linux
  • .bashrc not being executed, why?

    Pourquoi le bashrc ne s'execute pas

    July 13, 2012 at 11:39:13 AM GMT+2 - permalink - archive.org - http://www.linuxquestions.org/questions/linux-newbie-8/bashrc-not-being-executed-why-127676/
    bashrc linux shell
  • Bashrc collaboratif - Linux Attitude
    July 13, 2012 at 11:33:41 AM GMT+2 - permalink - archive.org - http://linux-attitude.fr/post/bashrc-collaboratif
    bashrc shell
  • Appliquer les modifications du .bashrc ou .profile - www.GNUComputing.Com (U|Li)nux

    Commande source pour appliquer les changements d'un .bashrc ou .profile sans relancer la session

    December 7, 2011 at 11:34:46 AM GMT+1 - permalink - archive.org - http://www.gnucomputing.com/astux/appliquer-les-modifications-du-bashrc-ou-profile.html
    appliquer bashrc profile
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation