linux

Linux是extensionless system,即有无扩展名、扩展名是什么对文件没有影响。


在linux命令行中,首先黑亮选中文字,然后鼠标左右键同时点击,就能将选中的文字复制到光标处命令行。

gedit file_name 命令能在gedit窗口中打开文件,能对文件进行编辑,并在窗口中对文件显示进行设置,方便阅读。

su username,切换用户,切换到username

查看用户vivek运行的进程 ps -u vivek,kill进程:kill pid, kill 进程号为pid的进程

挂起当前进程,退出其命令窗口,将进程转到后台执行:Ctrl + Z,命令fg <job number>能将命令<job number>调到前台foreground,<job number>是在挂起命令时显示的开头的数字,如下例中为1,jobs 命令显示当前在后台运行的job

[entmcnode15] axi2lite_2 $ gedit testbench_behav.wcfg 

[1]+  Stopped                 gedit testbench_behav.wcfg
[entmcnode15] axi2lite_2 $ fg 1
gedit testbench_behav.wcfg

[entmcnode15] axi2lite_2 $ jobs
[1]+  Stopped                 gedit testbench_behav.wcfg

关于path的命令

pwd:显示当前路径

~ (tilde) - This is a shortcut for your home directory. 

. (dot) - This is a reference to your current directory.

.. (dotdot)- This is a reference to the parent directory.

cd: change directory,改变目录。当cd 缺省参数时,表示直接跳转到home目录。

pwd
/home/ryan
ls ~/Documents
file1.txt file2.txt file3.txt
...
ls ./Documents
file1.txt file2.txt file3.txt
...
ls /home/ryan/Documents
file1.txt file2.txt file3.txt
...
ls ../../
bin boot dev etc home lib var
...

pwd
/home/ryan

cd Documents

ls
file1.txt file2.txt file3.txt
...

cd /

pwd
/

ls
bin boot dev etc home lib var
...

cd ~/Documents

pwd
/home/ryan/Documents

cd ../../

pwd
/home

cd

pwd
/home/ryan


Linux系统中的wc(Word Count)命令的功能为统计指定文件中的字节数、字数、行数,并将统计结果显示输出。

1.命令格式:

wc [选项]文件...

2.命令功能:

统计指定文件中的字节数、字数、行数,并将统计结果显示输出。该命令统计指定文件中的字节数、字数、行数。如果没有给出文件名,则从标准输入读取。wc同时也给出所指定文件的总统计数。

3.命令参数:

-c 统计字节数。

-l 统计行数。

-m 统计字符数。这个标志不能与 -c 标志一起使用。

-w 统计字数。一个字被定义为由空白、跳格或换行字符分隔的字符串。

-L 打印最长行的长度。

-help 显示帮助信息

--version 显示版本信息

4.使用实例:

实例1:查看文件的字节数、字数、行数

命令:

wc test.txt

[root@localhost test]# cat test.txt 
hnlinux
peida.cnblogs.com
ubuntu
ubuntu linux
redhat
Redhat
linuxmint
[root@localhost test]# wc test.txt
 7  8 70 test.txt
[root@localhost test]# wc -l test.txt 
7 test.txt
[root@localhost test]# wc -c test.txt 
70 test.txt
[root@localhost test]# wc -w test.txt 
8 test.txt
[root@localhost test]# wc -m test.txt 
70 test.txt
[root@localhost test]# wc -L test.txt 
17 test.txt

说明:

7     8     70     test.txt

行数 单词数 字节数 文件名



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值