Shell Programming in Healthcare Sector

Year : 2024 | Volume :11 | Issue : 01 | Page : –
By

Bhupinder Singh

Manmeet Kaur Arora

Sahil Lal

  1. Professor School of Law, Sharda University, Greater Noida, Gautam Budh Nagar Uttar Pradesh India
  2. Research Scholar School of Law, Sharda University, Greater Noida, Gautam Budh Nagar Uttar Pradesh India
  3. Research Scholar School of Law, Sharda University, Greater Noida, Gautam Budh Nagar Uttar Pradesh India

Abstract

Command Line Interface (CLI) is still the keystone of automation and system administration, regardless of how Graphical User Interfaces have taken up the dominant position for various similar tasks. The shell programming assists in improving the efficiency of work-flow, managing the complex and sophisticated system configuration and automate repetitive tasks by enabling the users to write scripts and sequences of commands that are stored in files. The Bourne Shell language was mainly utilized to automate system administration task. Though Bourne shell was known for its speed and accuracy, however it had many lacunas such as lack of certain features of interactive use like history, job control etc. Shell scripting languages like Bourne shells, C shell and Korn shell paved way for automation of common tasks and enhance the functionality of Common Line. This paper explores the various arena of Shell Programming in Healthcare Sector.

Keywords: Shell programming, accuracy, health, command line interface (CLI), C shell and Korn shell

[This article belongs to Journal of Advances in Shell Programming(joasp)]

How to cite this article: Bhupinder Singh, Manmeet Kaur Arora, Sahil Lal. Shell Programming in Healthcare Sector. Journal of Advances in Shell Programming. 2024; 11(01):-.
How to cite this URL: Bhupinder Singh, Manmeet Kaur Arora, Sahil Lal. Shell Programming in Healthcare Sector. Journal of Advances in Shell Programming. 2024; 11(01):-. Available from: https://journals.stmjournals.com/joasp/article=2024/view=0


References

1. Singh B, Kaunert C. Future of Digital Marketing: Hyper-Personalized Customer Dynamic Experience with AI-Based Predictive Models. In Revolutionizing the AI-Digital Landscape 2024 Jun 7 (pp. 189–203). Productivity Press.
2. Singh B, Kaunert C. Harnessing Sustainable Agriculture Through Climate-Smart Technologies: Artificial Intelligence for Climate Preservation and Futuristic Trends. In Exploring Ethical Dimensions of Environmental Sustainability and Use of AI 2024 (pp. 214–239). IGI Global.
3. Thekkethil MS, Shukla VK, Beena F, Chopra A. Robotic process automation in banking and finance sector for loan processing and fraud detection. In2021 9th international conference on reliability, infocom technologies and optimization (trends and future directions) (ICRITO) 2021 Sep 3 (pp. 1–6). IEEE.
4. Thennakoon, A., Bhagyani, C., Premadasa, S., Mihiranga, S. & Kuruwitaarachchi, N., January 2019. Real-time credit card fraud detection using machine learning. In 2019 9th International Conference on Cloud Computing, Data Science & Engineering (Confluence), IEEE, pp.488–493.
5. Verma, J., 2022. Application of Machine Learning for Fraud Detection–A Decision Support System in the Insurance Sector. In Big Data Analytics in the Insurance Market, Emerald Publishing Limited, pp.251–262.© STM Journals 2024. All Rights Reserved 8
6. Mamela, T.L., 2021. Assessment of the impact of artificial intelligence on the performance of the workforce at a South African banking institution. University of Johannesburg (South Africa).
7. Ullah, K., Rashid, I., Afzal, H., Iqbal, M.M.W., Bangash, Y.A. and Abbas, H., 2020. SS7 vulnerabilities—a survey and implementation of machine learning vs rule based filtering for detection of SS7 network attacks. IEEE Communications Surveys & Tutorials, 22(2), pp.1337–1371.
8. Rodgers, W., 2020. Artificial intelligence in a throughput model: Some major algorithms. CRC Press.
9. Singh B, Kaunert C, Vig K. Reinventing Influence of Artificial Intelligence (AI) on Digital Consumer Lensing Transforming Consumer Recommendation Model: Exploring Stimulus Artificial Intelligence on Consumer Shopping Decisions. InAI Impacts in Digital Consumer Behavior 2024 (pp. 141–169). IGI Global.
10. Singh B, Kaunert C. Revealing Green Finance Mobilization: Harnessing FinTech and Blockchain Innovations to Surmount Barriers and Foster New Investment Avenues. In Harnessing Blockchain-Digital Twin Fusion for Sustainable Investments 2024 (pp. 265-286). IGI Global.
11. Sarveshwaran, V., Chen, J.I.Z. and Pelusi, D. eds., 2023. Artificial Intelligence and Cyber Security in Industry 4.0. Springer Nature.
12. Mandal, J.K., Misra, S., Banerjee, J.S. and Nayak, S. eds., 2022. Applications of Machine Intelligence in Engineering: Proceedings of 2nd Global Conference on Artificial Intelligence and Applications (GCAIA, 2021), September 8–10, 2021, Jaipur, India. CRC Press.
13. Lee, K.F. and Qiufan, C., 2021. AI 2041: Ten visions for our future. Currency.
14. Leach, N., 2021. Architecture in the age of artificial intelligence.
15. Chamola, V., Hassija, V., Gupta, V. and Guizani, M., 2020. A comprehensive review of the COVID-19 pandemic and the role of IoT, drones, AI, blockchain, and 5G in managing its impact. Ieee access, 8, pp.90225–90265.
16. Sarkar, A. and Singh, B.K., 2020. A review on performance, security and various biometric template protection schemes for biometric authentication systems. Multimedia Tools and Applications, 79, pp.27721–27776.


Regular Issue Subscription Review Article
Volume 11
Issue 01
Received April 30, 2024
Accepted May 6, 2024
Published May 16, 2024

function myFunction2() {
var x = document.getElementById(“browsefigure”);
if (x.style.display === “block”) {
x.style.display = “none”;
}
else { x.style.display = “Block”; }
}
document.querySelector(“.prevBtn”).addEventListener(“click”, () => {
changeSlides(-1);
});
document.querySelector(“.nextBtn”).addEventListener(“click”, () => {
changeSlides(1);
});
var slideIndex = 1;
showSlides(slideIndex);
function changeSlides(n) {
showSlides((slideIndex += n));
}
function currentSlide(n) {
showSlides((slideIndex = n));
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName(“Slide”);
var dots = document.getElementsByClassName(“Navdot”);
if (n > slides.length) { slideIndex = 1; }
if (n (item.style.display = “none”));
Array.from(dots).forEach(
item => (item.className = item.className.replace(” selected”, “”))
);
slides[slideIndex – 1].style.display = “block”;
dots[slideIndex – 1].className += ” selected”;
}