bash 21307
BashPitfalls - Greg's Wiki
yesterday by jonathanjg
for i in $(ls *.mp3); do # Wrong! some command $i # Wrong! done for i in $(ls) # Wrong! for i in `ls` # Wrong! for i in $(find . -type f) # Wrong! for i in `find . -type f` # Wrong!
bash
pitfalls
shell
scripting
yesterday by jonathanjg
15 Examples To Master Linux Command Line History
yesterday by oracle2b
HISTCONTROL=ignoredups
export HISTCONTROL=erasedups
pclinuxos
pcli
linux_help
linux_configure
linux
bash
from delicious
export HISTCONTROL=erasedups
yesterday by oracle2b
Bash - GNU Project - Free Software Foundation
yesterday by bcomnes
Bash is the shell, or command language interpreter, that will appear in the GNU operating system. Bash is an sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh). It is intended to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard. It offers functional improvements over sh for both programming and interactive use. In addition, most sh scripts can be run by Bash without modification.
The improvements offered by Bash include:
Command line editing
Unlimited size command history
Job Control
Shell Functions and Aliases
Indexed arrays of unlimited size
Integer arithmetic in any base from two to sixty-four
bash
gnu
linux
The improvements offered by Bash include:
Command line editing
Unlimited size command history
Job Control
Shell Functions and Aliases
Indexed arrays of unlimited size
Integer arithmetic in any base from two to sixty-four
yesterday by bcomnes
Google command line
2 days ago by robertvesco
A ruby gem to give you the power of Google Search in your command line.
programming
utilities
bash
2 days ago by robertvesco
glyf: "This bash shell is now fully operational!"
2 days ago by roger
zsh-compatible precmd and postcmd support in PURE BASH!
bash
cli
2 days ago by roger
Copy this bookmark: