Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social), page 14

  1. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 14-Jul-2018 09:46:50 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    About the Execute Bit
    https://yesik.it/blog/2018-the-x-permission-bit

    #Linux #Permissions #Chmod

    In conversation Saturday, 14-Jul-2018 09:46:50 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      About the Execute Bit
      from Yes I Know IT!
      What is the purpose of the execute (`x`) bit? And why directories have that bit too? After all, they are not executable! And what if my filesystem does not support Unix standard permissions? Find all the answers here. And more...
  2. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 11-Jul-2018 21:57:26 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Check your Bash skills and challenge your friends:
    https://www.yesik.it/BASH-IT-OUT

    #Bash #Shell #Challenge #Puzzle #Linux
    #YesIKnowIT @itsfoss2

    In conversation Wednesday, 11-Jul-2018 21:57:26 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      Bash It Out!
      from Yes I Know IT!
      **Strengthen your Bash knowledge with 17 scripting challenges of varied difficulties** Do you want to improve your Bash skills? Be aware of the common or not-so-common pitfalls of interactive Bash usage? Or simply test your friends (and/or your employees!) with subtle brainteasers? Then, this book is for you!
  3. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 07-Jul-2018 00:16:47 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    A `cut` command tutorial by George Ornbo (@shapeshed):
    https://shapeshed.com/unix-cut/

    Don't miss the explanation about the difference between the "byte" and "character" positions!

    #POSIX #Unix #Linux #cut #utility

    In conversation Saturday, 07-Jul-2018 00:16:47 EDT from mastodon.social permalink
  4. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 03-Jul-2018 22:37:06 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    In your #shell, the `type` build-in command shows how a name would be interpreted if used as a
    command name:

    type cd ls rm adb
    => cd is a shell builtin
    => ls is aliased to `ls --color=auto'
    => rm is hashed (/bin/rm)
    => adb is /opt/android-sdk-linux/platform-tools/adb

    In conversation Tuesday, 03-Jul-2018 22:37:06 EDT from mastodon.social permalink
  5. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 14-Jun-2018 14:06:07 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Understanding the output of the `xauth list` command

    #XAuth #X11

    In conversation Thursday, 14-Jun-2018 14:06:07 EDT from mastodon.social permalink
  6. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 14-Jun-2018 07:52:04 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    #Vim is great.
    I like #tmux more and more.

    How could it be to use them both at the same time?
    https://blog.bugsnag.com/tmux-and-vim/
    by @keeganlow

    In conversation Thursday, 14-Jun-2018 07:52:04 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      Tmux and Vim - even better together
      from Bugsnag Blog
  7. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 14-Jun-2018 01:58:37 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Display the first 5 lines of a file:
    sed '5q' file

    #Shell #Sed #Linux

    In conversation Thursday, 14-Jun-2018 01:58:37 EDT from mastodon.social permalink
  8. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 13-Jun-2018 19:42:57 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    My #Bash book available both as #PaperBook and #eBook

    https://yesik.it/BASH-IT-OUT/PAPER …
    https://yesik.it/BASH-IT-OUT/PDF
    https://yesik.it/BASH-IT-OUT
    @itsfoss2 #YesIKnowIT

    In conversation Wednesday, 13-Jun-2018 19:42:57 EDT from mastodon.social permalink

    Attachments

    1. Invalid filename.
      Bash It Out!
      from Yes I Know IT!
      **Strengthen your Bash knowledge with 17 scripting challenges of varied difficulties**
  9. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 13-Jun-2018 14:12:09 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    split and csplit -- old friends, I used a lot in the 1.44MB floppy disk era...

    https://www.linux.com/learn/intro-to-linux/2017/8/splitting-and-re-assembling-files-linux
    by @CarlaSchroder

    #Linux #Unix #Split #csplit

    In conversation Wednesday, 13-Jun-2018 14:12:09 EDT from mastodon.social permalink
  10. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 13-Jun-2018 08:05:45 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    A #Mastodon instance for #Linux Lovers
    https://linuxrocks.online/about

    Try that new #SocialNetwork and follow me there https://yesik.it/mastodon
    #YesIKnowIT

    In conversation Wednesday, 13-Jun-2018 08:05:45 EDT from mastodon.social permalink
  11. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 13-Jun-2018 02:09:24 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    `join` is a standard #POSIX tool to merge two text files based on their content.

    https://yesik.it/EP14

    #Join #Linux #Unix #TextFile #Database
    #YesIKnowIT @itsfoss2

    In conversation Wednesday, 13-Jun-2018 02:09:24 EDT from mastodon.social permalink
  12. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 19:20:22 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Right-align text on 80 columns:
    sed -E ':a /.{80}/!{s/^/ /;ba}' file

    #Shell #Sed #Linux

    In conversation Tuesday, 12-Jun-2018 19:20:22 EDT from mastodon.social permalink
  13. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 13:39:32 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    In AWK an action without associated pattern defaults to 1.
    So those two commands are the same:

    seq 10 | awk '{print}'
    seq 10 | awk '1 {print}'

    #Shell #AWK

    In conversation Tuesday, 12-Jun-2018 13:39:32 EDT from mastodon.social permalink
  14. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 07:14:53 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    How could I have lived without knowing that?

    ```
    # copy file to the #X11 #Clipboard:
    xclip -sel c < file
    ```
    #Linux #Shell #Terminal #CLI

    In conversation Tuesday, 12-Jun-2018 07:14:53 EDT from mastodon.social permalink
  15. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 00:47:06 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    Nice introductory article on Awk by Justin Ellingwood (@jmellingwood):
    https://www.digitalocean.com/community/tutorials/how-to-use-the-awk-language-to-manipulate-text-in-linux

    In conversation Tuesday, 12-Jun-2018 00:47:06 EDT from mastodon.social permalink
  16. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 11-Jun-2018 23:11:21 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    In Bash the pseudo-variable RANDOM returns a pseudo-random integer in the [0;32767] range

    echo $RANDOM

    #Bash #Random

    In conversation Monday, 11-Jun-2018 23:11:21 EDT from mastodon.social permalink
  17. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 11-Jun-2018 17:04:50 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    GNU sed has a nice 'e' modifier for substitutions:
    sed 's/.*/date +%F -d &/e' << EOT
    now
    tomorrow
    yesterday
    EOT

    #GNU #sed #Linux

    In conversation Monday, 11-Jun-2018 17:04:50 EDT from mastodon.social permalink
  18. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 11-Jun-2018 12:35:36 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    `ls -lt` will show files ordered by modification date — most recent first.

    #ls #shell #linux

    In conversation Monday, 11-Jun-2018 12:35:36 EDT from mastodon.social permalink
  19. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 11-Jun-2018 05:58:28 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓
    • b0rk

    Bash scripting 101:
    https://jvns.ca/blog/2017/03/26/bash-quirks/
    by @b0rk

    In conversation Monday, 11-Jun-2018 05:58:28 EDT from mastodon.social permalink
  20. Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 10-Jun-2018 23:20:05 EDT Yes, I Know IT ! 🎓 Yes, I Know IT ! 🎓

    When you have to fight against tab completion trying to be smart:

    touch a.zap
    unzip a<tab> #nothing
    \unzip a<tab> #completed
    unzip a<esc>/<esc>/ #completed

    #CLI #Shell #Bash #History #TabCompletion
    #YesIKnowIT

    In conversation Sunday, 10-Jun-2018 23:20:05 EDT from mastodon.social permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.