1
vote
3answers
39 views
The not-so-useless “yes” bash command: how to confirm a command in every loop
Hi all,
I wrote a loop to unzip all zip files in a directory.
for f in *zip
do
unzip $f
done
However, I have to confirm the overwrite at every step:
replace file123.txt? [y]es, [n]o, [A]ll, …
0
votes
5answers
78 views
How to reenter Vim after :! bash?
I'm slowing getting to know Vim and Bash shell scripting and am running into this issue:
When I'm running MacVim, I sometimes want to use the command line to compile whatever it is I'm working on (in …
0
votes
2answers
32 views
Copy nested folders contents to one folder recursively (terminal)
I have a Wordpress upload folder that is structured using subfolders for months.
wolfr2:uploads wolfr$ tree .
.
|-- 2007
| |-- 08
| | |-- beautifulkatamari.jpg
| | |-- …
0
votes
5answers
52 views
Is there an “escape converter” for file and directory names available?
Hi script-writers,
The day came when I had to write a BASH script that walks arbitrary directory trees and looks at arbitrary files and attempts to determine something regarding a comparison among …
0
votes
2answers
49 views
Linux: How do I delegate exotic commandline arguments using a script?
Hello!
I want to write a wrapper bash script, and to pass all arguments to a called program. I was very sure, that this works correctly:
#!/bin/sh
someProgam $@
But when passing exotic arguments …
0
votes
2answers
44 views
Possible to use $1 within Bash array?
The script I'm writing will require me to pass some command line parameters. I would like to use these parameters within an array, but I'm not sure how.
A very basic example of this would be (script …
3
votes
5answers
114 views
Bash syntax: What is the “<<”?
Could someone explain the "<<" in the following code?
mysql test<<E0Q
Select * from signins
I'd try to search for it myself, but symbols are hard to search for...
Thanks,
Dan
3
votes
0answers
95 views
The cd command with “-” argument will change to previous directory. Is there a way to know which directory it is? [closed]
Hi all,
The command
cd -
will change the pwd to the last directory.
Is there a way to know which directory it is, so that I'll know where I am cd'ing to?
Thanks
0
votes
4answers
68 views
Sequence expression in bash
I'm used to used the following feature of bash :
for i in ${1..23} ; do echo $i ; done
This doesn't generalize. For instance, replacing 23 by even $p does not work. As the documentation says, this …
1
vote
2answers
43 views
Have ruby Unit::Test speak the results of the test
I've been using the built-in OSX 'say' command to signal the end of long running tests. It's easy and convenient.
I'd like to make it speak the last line of the results which says "6 tests, 18 …
-1
votes
4answers
74 views
Bash: controlling SSH
Hello,
I have this bash file, which asks for IP, password, etc. for OpenSSH to a device.
Now, if i use ssh root@ip, i have to enter the password. This is really irritating. Secondly; i cannot let my …
1
vote
4answers
51 views
Autocomplete for the ruby command in bash
In the Bash shell, I would like to run a directory of ruby scripts from anywhere. Adding the directory to the $PATH doesn't do it.
I want to type 'ruby,' start typing the first letters of a script …
2
votes
1answer
27 views
Find out if install script runs on mac or linux machine
Hi *,
I'm trying to find out if my install scrip is running on a Mac or Linux device.
Can someone give me a hint?
Thanks
Burntime
3
votes
4answers
62 views
How do i put stars into `read`?
Hello, what do i need to do for code in Bash, if i want to put stars, or even just that you cant see anything, when the user types something in using read. What do i need to do to edit read, so it can …
2
votes
0answers
53 views
Window Title in Bash [closed]
How can i set the window title in Bash? I do know that in win-batch it is TITLE, but what's it in bash??
