Compare commits

..

1 Commits

Author SHA1 Message Date
Robin-Charles GUIHENEUF
a9c637bf9a navi: Add some cheat sheets 2020-11-21 10:07:54 +01:00
2 changed files with 0 additions and 19 deletions

View File

@ -35,7 +35,6 @@ function config_update {
# Editor
alias c='codium'
alias e='micro'
# Find
alias find='find . -name'

View File

@ -1,18 +0,0 @@
% misc
# Show users service
cat /etc/passwd |awk -F: '{ print $1}'
# Change user password
sudo passwd <user>
# Create user with home
sudo useradd -m <username>
# Create user without home
sudo useradd <username>
# Delete an user
sudo deluser <user>
$ user: cat /etc/passwd |awk -F: '{ print $1}'