Completing Our Bash Script - More With Variables, Arrays And If-Then Statements

preview_player
Показать описание
In this video, I'm going to continue to work on our bash script from the video I did a couple of weeks ago.

REFERENCED:

WANT TO SUPPORT THE CHANNEL?

SOCIAL PLATFORMS:
💬 IRC: irc://freenode #distrotube

DT ON THE WEB:

FREE AND OPEN SOURCE SOFTWARE THAT I USE:

Your support is very much appreciated. Thanks, guys!
Рекомендации по теме
Комментарии
Автор

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.

RichardServello
Автор

You could use xargs -r after the dmenu and the emacsclint commands so if you choose nothing, it'll just exit.

RonnieNissan
Автор

This is worth the buck & we got this for free in 20min

Krishnan
Автор

Which linux distro is?
Any customization on panel?

kiranbhanushali
Автор

vim does have file manager inbuilt into it just like dired in emacs.

DigvijayPatankar
Автор

What linux os is he using? It looks fricking dope

drizzle
Автор

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".

eglinfo
Автор

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 ?

Cyanwasserstoff
Автор

how create same your panel on my bspwm?? i m look you dotsfile on gitlab and i confused :(

CoinDropsUnleashed
Автор

You kind of made `ls -1` a lot more complicated.

Tbn
Автор

find $myDir -mindepth 1 -maxdepth 1 -type d | xargs basename -a

RichardServello