请教大虾们几个LINUX命令的题目

2024-11-18 23:41:06
推荐回答(5个)
回答1:

grep -l LINUX ~/*
find ~ -newer ~/smallFile
ls -d ~/.*

回答2:

1、ls -al ~| grep *LINUX*
2、find ~ -newer ~/smallFile
3、ls -al ~
和上面的都差不多的

回答3:

ls -la,这个是显示隐藏文件的

回答4:

1.find / -name "*LINUX*"
2.不晓得
3.ls -a

回答5:

ls -al | grep *LINUX*
find ~ -newer ~/smallFile
ls ~ -la