Shell
cqbamboo
这个作者很懒,什么都没留下…
展开
-
my bash shell config file
使用alias命令修改用户主目录(就是/home/你的用户名/这个路径)下的.bashrc文件,我的修改如下:alias ll 'ls -lh'alias lll 'ls -lh | less'alias la 'ls -a'alias lf 'ls -F'原创 2011-08-07 09:00:13 · 504 阅读 · 0 评论 -
cd 命令用法
NAME cd -- change the current working directorySYNOPSIS cd [-plvn][-|]DESCRIPTION Change the current working directory EXAMPLE1. 快速回到自己的主目录$ cdor$ cd ~原创 2013-12-30 16:55:54 · 1938 阅读 · 0 评论 -
ls 命令用法
NAME ls -- list directory contentsSYNOPSIS ls [-ABCFGHLOPRSTUW@abcdefghiklmnopqrstuwx1] [file ...]DESCRIPTION For each operand that names a file of a type other than dire原创 2013-12-30 17:19:58 · 1571 阅读 · 0 评论 -
grep 命令用法
Grep : g (globally) search for a re (regular expression ) and p (print ) the results.NAMEgrep, egrep, fgrep, rgrep - print lines matching a patternSYNOPSISgrep [OPTIONS] PATTERN [FILE...]原创 2012-03-12 09:54:54 · 1043 阅读 · 0 评论 -
Linux date日期格式及加减运算
原文地址:http://blog.csdn.net/ithomer/article/details/7872905显示时间是个常用的命令,在写shell脚本中也经常会用到与日期相关文件名或时间显示。无论是linux还是windows下都是date命令。Linux下date命令用法date [OPTION]… [+FORMAT]date [-u|--utc转载 2014-01-10 09:46:57 · 1576 阅读 · 0 评论 -
Linux 查看本机IP地址
查看方法1: ifconfig查看方法2: ip add listip工具是root用的, 如果你是普通用户, 打全路径即可/sbin/ip原创 2014-01-17 13:54:27 · 7093 阅读 · 0 评论 -
diff & patch 命令用法
我们可以用下面的命令建立patch文件:$diff -c week week.new > week.patch建立好的week.patch如下:12345678转载 2011-08-01 15:51:03 · 817 阅读 · 0 评论 -
hexdump 命令用法
NAME hexdump - ascii, decimal, hexadecimal, octal dumpSYNOPSIS [-bcCdovx] [-e format_string] [-f format_file] [-n length] [-s skip] file ...DESCRIPTION The hexdump utili原创 2014-12-11 11:09:01 · 3617 阅读 · 0 评论 -
利用 GDB & Core Dump 来定位程序出错的位置
转载自,Core Dump详解gdb结合coredump定位崩溃进程1. 什么是Core:Sam之前一直以为Core Dump中Core是 Linux Kernel的意思. 今天才发现在这里,Core是另一种意思:在使用半导体作为内存的材料前,人类是利用线圈当作内存的材料(发明者为王安),线圈就叫作 core ,用线圈做的内存就叫作 core mem转载 2015-02-27 17:18:11 · 1411 阅读 · 0 评论 -
Linux 的常用后台运行指令
转载自,http://blog.chinaunix.net/uid-26495963-id-3062757.html執行背景工作的指令指令或符號使用範例說明&% fasta &在背景中執行程式jobs% jobs顯示送入背景之工作kill% kill (job#)移除指定转载 2015-03-28 21:05:49 · 14088 阅读 · 0 评论 -
tcpdump 命令用法
本文大量转载自 Linux tcpdump命令详解 ,仅作少量修改NAME tcpdump - dump traffic on a networkSYNOPSIS tcpdump [ -AdDeflLnNOpqRStuUvxX ] [ -c count ] [ -C file_size ] [ -F fil转载 2014-12-12 15:02:12 · 5608 阅读 · 0 评论 -
dmesg
DMESG(8)FreeBSD System Manager's Manual DMESG(8)NAME dmesg -- display the system message bufferSYNOPSIS dmesg [-ac] [-M core [-N system]]DESCRIPTION The dme转载 2015-03-24 10:53:50 · 570 阅读 · 0 评论 -
Learning shell
learning shell原创 2015-03-19 15:07:26 · 582 阅读 · 0 评论 -
pwd 命令用法
NAME pwd - print name of current/working directorySYNOPSIS pwd [OPTION]DESCRIPTION Print the full filename of the current working directory.显示当前目录原创 2013-12-30 16:59:17 · 2021 阅读 · 0 评论 -
wc 命令用法
NAME wc -- word, line, character, and byte countSYNOPSIS wc [-clmw] [file ...]DESCRIPTION The wc utility displays the number of lines, words, and bytes contained i原创 2013-12-28 19:41:53 · 2102 阅读 · 0 评论 -
cut 命令用法
NAMEcut - remove sections from each line of filesSYNOPSIScut OPTION... [FILE]...DESCRIPTIONPrint selected parts of lines from原创 2011-09-08 13:11:56 · 874 阅读 · 0 评论 -
script 命令用法
Script makes a typescript of everything printed on your terminal. NAME script - make typescript of terminal sessionSYNOPSIS原创 2011-08-11 14:16:31 · 1064 阅读 · 0 评论 -
find 命令用法
Linux文件查找命令find,xargs详述总结:zhy2111314来自:LinuxSir.Org整理:北南南北摘要: 本文是find 命令的详细说明,可贵的是针对参数举了很多的实例,大量的例证,让初学者更为容易理解;本文是zhyfly兄贴在论坛中;我转载 2011-08-07 09:13:21 · 696 阅读 · 0 评论 -
pipe 命令用法
By far, the most useful and powerful thing youcan do with I/O redirection is to connect multiplecommands together with what are calledpipes.原创 2011-08-07 08:56:14 · 713 阅读 · 0 评论 -
less 命令用法
Once started, less willdisplay the text file one page at a time. You mayuse the Page Up and Page Down keys to move throughthe text file. To转载 2011-08-07 08:55:27 · 585 阅读 · 0 评论 -
tee 命令用法
NAME tee - read from standard input and write to standard output and filesSYNOPSIS tee [OPTION]... [FILE]...原创 2011-08-03 13:54:27 · 3340 阅读 · 0 评论 -
source 命令用法
source 命令用法: source filename 或 . filenamesource 命令作用: source命令也称为“点命令”,也就是一个点符号(.)。在当前bash环境下读取并执行FileName中的命令。source命令通常用于重新执行刚修改转载 2011-08-07 08:57:13 · 412 阅读 · 0 评论 -
Ubuntu中如何设置环境变量
/etc/profile:在登录时,操作系统定制用户环境时使用的第一个文件,此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行。/etc/environment:在登录时操作系统使用的第二个文件,系统在读取你自己的profile前,设置环境文件的环境变量转载 2011-09-13 16:09:25 · 1856 阅读 · 0 评论 -
Shell 变量的变量用法
sandbox$ cat test.sh#!/bin/shi=3eval echo \$$isandbox$ ./test.sh a b c d ec原创 2011-08-24 23:23:44 · 1072 阅读 · 0 评论 -
怎样查看shell类型
查看shell:(1)#echo $0 (适用:sh/ksh) (2)#echo $SHELL(用户默认的Shell,但不实时反映当前shell)(3)#ps |grep $$|awk ‘{print $4}’转载 2012-02-20 11:23:38 · 701 阅读 · 0 评论 -
Linux 命令参考
转载 2012-04-01 17:03:33 · 595 阅读 · 0 评论 -
find 命令实践
1. 查找/拷贝 当前目录下包含dog字符串的文件test$ tree.|-- des`-- src|-- mycat.c|-- mydog.c|-- mydog.h|-- readme|-- yourdog.c`-- yourdog.h2 directories, 6 filestest$ find ./src -name "*dog*原创 2011-08-19 17:16:57 · 1084 阅读 · 0 评论 -
Linux设置环境变量的命令
BASH: export var=xxxCSH: setenv var xxx原创 2015-05-22 16:35:26 · 938 阅读 · 0 评论