Linux常用命令

2020-04-27  本文已影响0人  还闹不闹
groupadd groupname
useradd [-d home] [-s shell] [-c comment] [-m [-k template]] [-f inactive] [-e expire ] [-p passwd] [-r] username
主要参数
-c 加上备注文字,备注文字保存在passwd的备注栏中。
-d 指定用户登入时的启始目录。
-D 变更预设值。
-e 指定账号的有效期限,缺省表示永久有效。
-f 指定在密码过期后多少天即关闭该账号。
-g 指定用户所属的起始群组。
-G 指定用户所属的附加群组。
-m 自动建立用户的登入目录。
-M 不要自动建立用户的登入目录。
-n 取消建立以用户名称为名的群组。
-r 建立系统账号。
-s 指定用户登入后所使用的shell。
-u 指定用户ID号。
-k 必须和-m一起使用,将/etc/skel目录的内容复制到用户的HOME目录
echo 123 | passwd --stdin username
userdel -r username
groupdel groupname
cat /etc/passwd/
cat /etc/group
wc -l data.txt
head data.txt
egrep "^1|^0" result > result_new
egrep "^1|^0" result | awk '{print $1","$2}' > res_0709_xyzdhy1905_ge2_LN21.txt;
egrep "^1|^0" result | awk '{print $1"|"$2}' > res_0709_xyzdhy1905_ge2_LN21.txt; 
egrep "^1|^0" result | awk '{print $1"|"$2"|"$3}' > res_0709_xyzdhy1905_ge2_LN21.txt;
sudo lftp -u "hly_sftp","H7M5P/1gFHK" sftp://192.168.0.111
cat test.txt | while read line
do
echo ${line:1:11} >> a.txt
done
#以下a.txt行去重,b.txt行去重(必须)
#并集
sort a.txt b.txt | uniq

#差集
#a.txt-b.txt
sort a.txt b.txt b.txt | uniq -u

#b.txt-a.txt
sort b.txt a.txt a.txt | uniq -u

#交集
#方法一:
sort a.txt b.txt | uniq -d
#方法二:
cat file1 file2 | sort | uniq -d

编辑/etc/sudoers
在"root ALL=(ALL) ALL"起下面添加"xxx ALL=(ALL) ALL"(这里的xxx是你的用户名)

load data local inpath '/home/test.txt' into table z.tb;
tar -czvf test.tar.gz 1.txt
tar -xvf *.*
yum list installed
上一篇下一篇

猜你喜欢

热点阅读