I LOVE bash. I use it to automate many tasks in my job. Using it right now to automatically generate shots (vfx production) based on the master to streamline the process on 20+ shots in a sequence.
@RonnieNissan5 жыл бұрын
You could use xargs -r after the dmenu and the emacsclint commands so if you choose nothing, it'll just exit.
@gianniprocida33322 жыл бұрын
I love your channel. Thank you
@AnzanHoshinRoshi5 жыл бұрын
Thank you, Derek. I like bash.
@DigvijayPatankar5 жыл бұрын
vim does have file manager inbuilt into it just like dired in emacs.
@kiranbhanushali70695 жыл бұрын
Which linux distro is? Any customization on panel?
@drizzle89155 жыл бұрын
What linux os is he using? It looks fricking dope
@kylebriffa75 жыл бұрын
Arch i think
@Krishnan1723 жыл бұрын
This is worth the buck & we got this for free in 20min
@Cyanwasserstoff5 жыл бұрын
Thank you Derek aka @Distrotube for a great video and yeah, at least for me it was easy to follow, but I had basic C++ programming in school. Is Bash also capable of when (), do while commands ?
@DistroTube5 жыл бұрын
There are "while" loops in bash. And "for" and "until" loops as well.
@Cyanwasserstoff5 жыл бұрын
@@DistroTube Thanks for the answer
@eglinfo12 жыл бұрын
I think I found a mistake in your command to get filenames only. I tried it and the result of one file like "test app" came out only as "test".
@CoinDropsUnleashed5 жыл бұрын
how create same your panel on my bspwm?? i m look you dotsfile on gitlab and i confused :(
@Tb0n35 жыл бұрын
You kind of made `ls -1` a lot more complicated.
@DistroTube5 жыл бұрын
ls -1 -d */ #certainly makes things a bit simpler.
@RichardServello5 жыл бұрын
Ls errors if the result is empty. I always use find. It's not as fast sometimes but it doesn't break on empty results.
@RichardServello5 жыл бұрын
find $myDir -mindepth 1 -maxdepth 1 -type d | xargs basename -a