About the Execute Bit
https://yesik.it/blog/2018-the-x-permission-bit
Notices by Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social), page 14
-
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 ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 11-Jul-2018 21:57:26 EDT 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 @itsfoss2In conversation from mastodon.social permalink Attachments
-
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Saturday, 07-Jul-2018 00:16:47 EDT 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!
In conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 03-Jul-2018 22:37:06 EDT 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/adbIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 14-Jun-2018 14:06:07 EDT Yes, I Know IT ! 🎓
Understanding the output of the `xauth list` command
In conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 14-Jun-2018 07:52:04 EDT 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 @keeganlowIn conversation from mastodon.social permalink Attachments
-
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Thursday, 14-Jun-2018 01:58:37 EDT Yes, I Know IT ! 🎓
Display the first 5 lines of a file:
sed '5q' fileIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 13-Jun-2018 19:42:57 EDT 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 #YesIKnowITIn conversation from mastodon.social permalink Attachments
-
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 13-Jun-2018 14:12:09 EDT 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 @CarlaSchroderIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 13-Jun-2018 08:05:45 EDT Yes, I Know IT ! 🎓
A #Mastodon instance for #Linux Lovers
https://linuxrocks.online/aboutTry that new #SocialNetwork and follow me there https://yesik.it/mastodon
#YesIKnowITIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Wednesday, 13-Jun-2018 02:09:24 EDT Yes, I Know IT ! 🎓
`join` is a standard #POSIX tool to merge two text files based on their content.
In conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 19:20:22 EDT Yes, I Know IT ! 🎓
Right-align text on 80 columns:
sed -E ':a /.{80}/!{s/^/ /;ba}' fileIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 13:39:32 EDT 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}'In conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 07:14:53 EDT 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 #CLIIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Tuesday, 12-Jun-2018 00:47:06 EDT 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-linuxIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 11-Jun-2018 23:11:21 EDT Yes, I Know IT ! 🎓
In Bash the pseudo-variable RANDOM returns a pseudo-random integer in the [0;32767] range
echo $RANDOM
In conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 11-Jun-2018 17:04:50 EDT Yes, I Know IT ! 🎓
GNU sed has a nice 'e' modifier for substitutions:
sed 's/.*/date +%F -d &/e' << EOT
now
tomorrow
yesterday
EOTIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 11-Jun-2018 12:35:36 EDT Yes, I Know IT ! 🎓
`ls -lt` will show files ordered by modification date — most recent first.
In conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Monday, 11-Jun-2018 05:58:28 EDT Yes, I Know IT ! 🎓
Bash scripting 101:
https://jvns.ca/blog/2017/03/26/bash-quirks/
by @b0rkIn conversation from mastodon.social permalink -
Yes, I Know IT ! 🎓 (yesiknowit@mastodon.social)'s status on Sunday, 10-Jun-2018 23:20:05 EDT 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>/ #completedIn conversation from mastodon.social permalink