CW Project Based On File Management
File Manager This is my project based on file management. This is a shell script project with GUI. This will help you to create your own project with GUI. Here I explained my project's code in detail. Code Link The basic usage of Zenity is like this - zenity --info --text="blah blah blah" "zenity" is the command. "--info" declares the type of box/window. "--text=" creates the desired text to be displayed by this info window. The text parameter can display the output of commands and the value of variables. As many scriptwriters will see, Zenity uses the same syntax as shell scripts. Displaying the output of a command is as easy as this - zenity --info --text=`whoami` NOTE: Zenity also works in batch files (in MS-Windows). Here, Zenity would use the same syntax/rules of batch files. Also, keep in mind that Zenity is a third-party program and not a language, although I seem to make it sound like it is some pr...