Post

Debian "Alias" Kullanımı

Örneğin; 🗑 cls (Clear Screen) komutu, özellikle Windows işletim sistemi kullanıcılarının komut istemcisinde (Command Prompt) terminal ekranını temizlemek için kullanılan bir komuttur. Bu komut, terminal penceresindeki tüm önceki çıktıları temizler ve size yeni bir boş ekran sunar.

🗑 cls komutu, Linux tabanlı sistemlerde doğrudan çalışmaz. Ancak, bir taklitçi komut alias (takma ad) oluşturarak bu komutu kullanabilirsiniz.

#To affect the current user's Bash shell:
sudo nano .bashrc

#To affect all users' Bash shells:
sudo nano /etc/bash.bashrc

#To influence a specific group of users:
sudo nano /etc/profile

#Add the following line to the end of the file.
#In this way, by running the cls command, you will actually be referring to the clear command.

alias cls='clear'

#For changes to take effect:
source ~/.bashrc
source /etc/bash.bashrc

#On Debian-based systems such as Debian or Ubuntu, general system settings are made in /etc/bash.bashrc or /etc/profile files, while on Red Hat-based systems (e.g. Fedora, CentOS) general system settings are made in /etc/bash.bashrc or /etc/profile.d/. files are used

#Saygılarımla www.farukguler.com

Taklitlerinden sakınınız ;)

This post is licensed under CC BY 4.0 by the author.