Groups
Groups
Sign in
Groups
Groups
bash tips
Conversations
About
Send feedback
Help
bash tips
1–30 of 41
Mark all as read
Report group
0 selected
mytubeclips
,
Don M
2
1/27/16
format columns bash
#!/bin/bash if [ $# -ne 1 ] then echo Usage: $(basename $0) input_file exit 1 fi if [ ! -r "${1}
unread,
format columns bash
#!/bin/bash if [ $# -ne 1 ] then echo Usage: $(basename $0) input_file exit 1 fi if [ ! -r "${1}
1/27/16
Don Mitchell
1/27/16
Re: [bash-tips] Digest for bash-tips@googlegroups.com - 1 update in 1 topic
#!/bin/bash if [ $# -ne 1 ] then echo Usage: $(basename $0) input_file exit 1 fi if [ ! -r "${1}
unread,
Re: [bash-tips] Digest for bash-tips@googlegroups.com - 1 update in 1 topic
#!/bin/bash if [ $# -ne 1 ] then echo Usage: $(basename $0) input_file exit 1 fi if [ ! -r "${1}
1/27/16
Joaquin Menchaca
,
RJ
2
11/15/15
Testing for Executables
I would recommend not writing it all in one line (https://google.github.io/styleguide/shell.xml) What
unread,
Testing for Executables
I would recommend not writing it all in one line (https://google.github.io/styleguide/shell.xml) What
11/15/15
Maxim Veksler
11/27/12
Hello everyone, I'm interesting to see if we can form a live thing out of this group.
So, anyone is still here? Anyone wishes to take more engagement with this?
unread,
Hello everyone, I'm interesting to see if we can form a live thing out of this group.
So, anyone is still here? Anyone wishes to take more engagement with this?
11/27/12
HUB
,
Maxim Veksler
3
4/1/10
bash. read variable
On 25 мар, 13:31, Maxim Veksler <hq4e...@gmail.com> wrote: > This happens because you are
unread,
bash. read variable
On 25 мар, 13:31, Maxim Veksler <hq4e...@gmail.com> wrote: > This happens because you are
4/1/10
Maxim Veksler
1/2/10
Sorry about the recent spam, user has been banned from the group.
Also additional measures have been applied to ensure this won't happen again. Thank you, Maxim.
unread,
Sorry about the recent spam, user has been banned from the group.
Also additional measures have been applied to ensure this won't happen again. Thank you, Maxim.
1/2/10
perrinbrunett77494
9/23/09
Where can I find an online anti-virus that doesn't install on your PC?
I've got 5 PCs that I'm trying to use to train disadvantaged young people. The problem is
unread,
Where can I find an online anti-virus that doesn't install on your PC?
I've got 5 PCs that I'm trying to use to train disadvantaged young people. The problem is
9/23/09
hq4...@gmail.com
11/17/07
Single link to bash tips wiki
Hello guys, A very good source of tips and usage examples for the bash shell is http://wooledge.org/
unread,
Single link to bash tips wiki
Hello guys, A very good source of tips and usage examples for the bash shell is http://wooledge.org/
11/17/07
hq4...@gmail.com
12/6/06
bash conditions and process pid / exe tips
=== === Taken from Linux-IL === Shachar Shemesh <linu...@shemesh.biz> Hi all, I have a shell
unread,
bash conditions and process pid / exe tips
=== === Taken from Linux-IL === Shachar Shemesh <linu...@shemesh.biz> Hi all, I have a shell
12/6/06
Maxim Vexler
11/15/06
Handling "new line" and "space" characters in bash
Hello List, To sum up the tips: By Oded Arbel: a. Use a subshell to avoid mistakenly over riding your
unread,
Handling "new line" and "space" characters in bash
Hello List, To sum up the tips: By Oded Arbel: a. Use a subshell to avoid mistakenly over riding your
11/15/06
Ray
,
Maxim Vexler
2
11/3/06
Hashing out typed passwords
On 10/30/06, Ray <ray...@f2s.com> wrote: > > Hi all. > > Very new to Bash
unread,
Hashing out typed passwords
On 10/30/06, Ray <ray...@f2s.com> wrote: > > Hi all. > > Very new to Bash
11/3/06
kevi...@gmail.com
10/27/06
switch windows in vimdiff
To switch windows in vimdiff or to navigate windows in vimdiff or to change windows in vimdiff try
unread,
switch windows in vimdiff
To switch windows in vimdiff or to navigate windows in vimdiff or to change windows in vimdiff try
10/27/06
fvu...@gmail.com
10/3/06
cdots: change directory functions .. ... .... etc with tab-completion
I wanted to save keystrokes by using shortcuts for changing directories back. Also I wanted to supply
unread,
cdots: change directory functions .. ... .... etc with tab-completion
I wanted to save keystrokes by using shortcuts for changing directories back. Also I wanted to supply
10/3/06
hq4...@gmail.com
8/29/06
Sorting and piping with ps, sort and sed
From: Shachar Shemesh <shachar---lingnu.com> Mailed-By: cs.huji.ac.il To: Nadav Har'El <
unread,
Sorting and piping with ps, sort and sed
From: Shachar Shemesh <shachar---lingnu.com> Mailed-By: cs.huji.ac.il To: Nadav Har'El <
8/29/06
Maxim Vexler
5/11/06
Handling large chunks of data spread across multiple files
To backup your hard drive onto DVDs use split(1),dd(1),gzip(1) just pipe them. To restore you can use
unread,
Handling large chunks of data spread across multiple files
To backup your hard drive onto DVDs use split(1),dd(1),gzip(1) just pipe them. To restore you can use
5/11/06
Maxim Vexler
3/20/06
Debian : How to remove all packages owning /some/folder/somefile
Hi folks, This one is for the debianers among us: If you have some obscure packages spreading their
unread,
Debian : How to remove all packages owning /some/folder/somefile
Hi folks, This one is for the debianers among us: If you have some obscure packages spreading their
3/20/06
kruhft
,
Maxim Vexler
2
3/20/06
how to backup your linux system using bash, tar and netcat
On 3/20/06, kruhft <kru...@gmail.com> wrote: > > i recently ran into the problem of not
unread,
how to backup your linux system using bash, tar and netcat
On 3/20/06, kruhft <kru...@gmail.com> wrote: > > i recently ran into the problem of not
3/20/06
hq4...@gmail.com
3/7/06
Get all the user home dirs on the system - RH
<<< #!/bin/sh # DESCRIPTION : Get list of home dirs for normal user's on the system.
unread,
Get all the user home dirs on the system - RH
<<< #!/bin/sh # DESCRIPTION : Get list of home dirs for normal user's on the system.
3/7/06
eshord
3/4/06
.bashrc editing
hey i am using rar from rarlab.com. i'm trying to modify my .bashrc script so that when i type
unread,
.bashrc editing
hey i am using rar from rarlab.com. i'm trying to modify my .bashrc script so that when i type
3/4/06
Maxim Vexler
10/18/05
Fwd: A stupid bash quote question.
From: Ehud Karni <eh...@unix.mvs.co.il> Date: Aug 31, 2005 12:27 PM Subject: Re: A stupid bash
unread,
Fwd: A stupid bash quote question.
From: Ehud Karni <eh...@unix.mvs.co.il> Date: Aug 31, 2005 12:27 PM Subject: Re: A stupid bash
10/18/05
hq4...@gmail.com
2
5/21/05
Using Regular Expressions
Correct URL : http://etext.lib.virginia.edu/services/helpsheets/unix/regex.html
unread,
Using Regular Expressions
Correct URL : http://etext.lib.virginia.edu/services/helpsheets/unix/regex.html
5/21/05
Maxim Vexler
2
5/9/05
VIM cheatsheet
Cursor movement * h - move left * j - move down * k - move up * l - move right * w - jump by start of
unread,
VIM cheatsheet
Cursor movement * h - move left * j - move down * k - move up * l - move right * w - jump by start of
5/9/05
Maxim Vexler
4/30/05
Unicode UTF-8 much useful information
http://www.cl.cam.ac.uk/~mgk25/unicode.html http://www.cl.cam.ac.uk/~mgk25/ucs/examples/ ftp://ftp.
unread,
Unicode UTF-8 much useful information
http://www.cl.cam.ac.uk/~mgk25/unicode.html http://www.cl.cam.ac.uk/~mgk25/ucs/examples/ ftp://ftp.
4/30/05
Cappy2112
,
Maxim Vexler
2
4/10/05
How to cd in a bash script, and remian in that directory after the script stops executing
Well, you can try : source ./<filename> or the shortened version . ./<filename> for more
unread,
How to cd in a bash script, and remian in that directory after the script stops executing
Well, you can try : source ./<filename> or the shortened version . ./<filename> for more
4/10/05
hq4...@gmail.com
4/5/05
I/O Redirection
COMMAND_OUTPUT > # Redirect stdout to a file. # Creates the file if not present, otherwise
unread,
I/O Redirection
COMMAND_OUTPUT > # Redirect stdout to a file. # Creates the file if not present, otherwise
4/5/05
hq4...@gmail.com
3/31/05
30sec on diff & patch
======================== Creating a Patch File: ======================== diff -Naur olddir newdir
unread,
30sec on diff & patch
======================== Creating a Patch File: ======================== diff -Naur olddir newdir
3/31/05
hq4...@gmail.com
3/28/05
bash Parameter Expansion
************************ http://itb.biologie.hu-berlin.de/~benda/software/bash.html *****************
unread,
bash Parameter Expansion
************************ http://itb.biologie.hu-berlin.de/~benda/software/bash.html *****************
3/28/05
hq4...@gmail.com
3/28/05
Accessing Command-line Arguments $1 $# $*
#!/bin/sh # Illustrates using command-line arguments # Execute with # sh args1.sh On the Waterfront
unread,
Accessing Command-line Arguments $1 $# $*
#!/bin/sh # Illustrates using command-line arguments # Execute with # sh args1.sh On the Waterfront
3/28/05
hq4...@gmail.com
3/28/05
Scripting With sed
Scripting With sed * Topics covered: global search and replace, input and output redirection *
unread,
Scripting With sed
Scripting With sed * Topics covered: global search and replace, input and output redirection *
3/28/05
hq4...@gmail.com
3/28/05
awk
awk * Topics covered: processing columnar data * Utilities covered: awk * The awk utility is used for
unread,
awk
awk * Topics covered: processing columnar data * Utilities covered: awk * The awk utility is used for
3/28/05