Is there a way to make dialog boxes in Linux? [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In Windows, you could simply make a .vbs script (Virtual Basic Script) by doing x=msgbox(). But is there a scripting language for Linux?

There is a text/curses program called dialog, which you can call from bash, which is a fine scripting language.
http://manpages.ubuntu.com/manpages/natty/man1/dialog.1.html
And you can try some examples,
$ pushd /usr/share/doc/dialog/examples
$ ./calendar

Related

Detect Linux media playback with Bash script [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 20 hours ago.
Improve this question
Is there any way for me to detect if media is being played/paused using a script?
I've tried with qdbus but it just outputs an error
qdbus: could not find a Qt installation of ''

Is there a Linux equivalent for Windows "InterLockedCompareExchange" API? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Is there any posix/thread related API that could help to make "a value change operation" thread-safe, without locking several statements?
Is there a posix API for Linux to do this?
GCC has atomic built-ins, __sync_val_compare_and_swap should be equivalent of InterLockedCompareExchange
If you use C++ 11, you can use std::atomic_compare_exchange_* in atomic operations library as needed.

Stresstest including X server [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am looking for an application to stresstest a Linux machine. I usually use stress, but am looking fof something which also generates graphics load. Preferably easy to compile without dependencies.
Any suggestions ?
x11perf is part of standard X11 distribution. Do x11perf -all to run all tests.

Edit/Extract FLA files under linux? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to extract some content which is packed in fla or swf. It's some text which i need to grab. Is there any easy practical way to do that?
I tried http://freshmeat.net/projects/f4l/ and http://qflash.sourceforge.net but first has some problems with qt3 libs and second seems to throw some error in build which i can't fix :(

Shell time command source code? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Where can I find the time bash utility source code? Is there a website that allows to search for this code?
The time command is from the GNU project, so all of the source code is available there.
Specifically, you are probably looking for this: http://ftpmirror.gnu.org/time/
The time command in Bash is built-in, so it should be found in the GNU Bash source code.

Resources