linux 常用命令整理

1.查看内核版本命令:

 cat /proc/version

2. 获取路径名:

shaoxinw@ubuntu:~$ pwd
/home/shaoxinw
shaoxinw@ubuntu:~$ pwd |cut -d'/' -f2
home
shaoxinw@ubuntu:~$ pwd |cut -d'/' -f3
shaoxinw

3. Expressions used with if 

[ -f FILE ] True if FILE exists and is a regular file

4.arm-linux-strip:剥掉目标文件的所有的符号信息

5. rpm -qa|grep openssl 查看安装的软件版本

6.” make: execvp: <YOUR FILE NAME>: Permission denied … ”

    chmod 755 -R  /path/to/yourfolder


你可能感兴趣的:(linux 常用命令整理)