代码搜索:bash
找到约 5,321 项符合「bash」的源代码
代码结果 5,321
www.eeworm.com/read/381773/9072267
txt bash 入门指南.txt
**写给刚刚接触Linux的人
*不要对命令行工具心存畏惧。
大部分是<mark>bash</mark>的内容,也有一些常用的系统工具,仅是<mark>bash</mark>其实能做的事情很有限。
--==目录==--
1 什么是<mark>Bash</mark> 什么是Shell
2 Linux的文件、目录、程序
3 简单的命令 ls cp mv mkdir rm chown chmod
4 管道 和 ...
www.eeworm.com/read/381773/9072285
txt bash编程笔记.txt
<mark>Bash</mark>特殊字符
*:匹配任何字符串
?:匹配任何单个字符
[]: 集合运算符
[set]:用字符集合作通配符匹配单个字符,如:[aeiou],[a-z],[a-h, w-z]
[!set]:除了集合外的所有字符组成的集合作通配符
< :输入重定向
> :输出重定向(没有文件则创建,有则覆盖)
>> :输出重定向(没有则创建,有则追加到文件尾部)
(): 子s ...
www.eeworm.com/read/381683/9078080
bat bash_env.bat
@echo off
set MAKE_MODE=unix
set EZHOSTTOOLS=%EZHOSTINSTALLDIR%\tools
set CY16RELEASE=cy16-020830
set SA1100RELEASE=SA1100-020830
set CY16TOOLS=%EZHOSTTOOLS%\%CY16RELEASE%
set SA1100TOOL
www.eeworm.com/read/374163/9418997
bash getopt-parse.bash
#!/bin/bash
# A small example program for using the new getopt(1) program.
# This program will only work with bash(1)
# An similar program using the tcsh(1) script language can be found
# as parse.tc
www.eeworm.com/read/374163/9419008
bash getopt-test.bash
#!/bin/bash
if `getopt -T >/dev/null 2>&1` ; [ $? = 4 ] ; then
echo "Enhanced getopt(1)"
else
echo "Old getopt(1)"
fi
www.eeworm.com/read/272513/10955235
bash make_and_test.bash
#!/bin/bash
# This scripty runs through all the combinations of MTL
# matrix types, compiles the test suite for each, and runs the
# test suite for a bunch of different sizes of the matrix.
# This ta
www.eeworm.com/read/467619/7005950
z bash.tar.z
www.eeworm.com/read/399645/7132794