Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

tips for ongoing and routine tasks using linux

change keybord to BR language
#setxkbmap -model abnt2 -layout br -variant abnt2

change bash
#vim /root/.bashrc
#source /root/.bashrc

change zsh
vim /root/.zshrc
#source /root/.zshrc

adding path golang in bash/zsh
#export PATH=$PATH:/usr/local/go/bin

find all files containing specific text on Linux
#grep -Ril "text-to-find-here" /Path
i >> stands for ignore case (optional in your case).
R >> stands for recursive.
l >> stands for "show the file name, not the result itself".
/ >> stands for starting at the root of your machine.

About

tips for ongoing and routine tasks using linux

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors