NOTE: All the Assignments are done on Linux.
A] SHELL SCRIPTING For writing shell scripting code: Open the terminal from the file in which you want to save your '.sh' file. Use command: 'nano [file_name].sh'. This will open the nano text editor. You can write the code and save it using - 1)'CTRL+O' 2)ENTER 3)'CTRL+X'
B] Remaining C/C++ Programs: Make sure you have downloaded MingW on your Linux Machine To compile the code: 1] C: 'gnu -o [file_name] [file_name].c' 2] Cpp: 'gcc -o [file_name] [file_name].c'
To execute: './[file_name]'
echo "alias lsa='ls -la'" >> ~/.bashrc : to use the created alias in all sessions persistently.