0
votes
3answers
43 views
How can I add text to the same line?
I used this command to find mp3 files and write their name on log.txt:
find -name *.mp3 >> log.txt
I want to move the files using the mv command and I would like to appen …
0
votes
5answers
34 views
An script that accepts a command
#!/bin/sh
#My script
echo "Are you sure you want to reorganize your files?"
echo "Type y or Y to continue. Anything else will stop the process"
read response
if [ "$response" = " …
0
votes
3answers
46 views
basic shell script
I have some video files all ending in .wmv .mov .mpg. I have music files ending in .mp3 .wma. And finally I have some text files all end in the extension .txt
I wrote a shell scri …
0
votes
2answers
24 views
How to get the application exit code from the Windows command shell?
Of course, if possible, without any VBScript-like scripts.
1
vote
2answers
34 views
How do I simplify bash’s ‘eval “$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE”’ and keep it working?
I'm updating a bash script which serves as a program testing tool.
Previously, I had this line in a script working perfectly ($BIN_FILE is set to a relative path to the binary bein …
1
vote
3answers
47 views
Translating a Windows batch file into a Linux shell script
I have a batch file that I use to check whether my sites react to a ping.
If a site doesn't react, the script writes the output into a text file.
I wanted to use the same kind of …
0
votes
0answers
23 views
Why doesn’t “find -print0” work in Cygwin under Vista?
I'm writing a simple shell script:
find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5
In Cygwin under Vista, it just sits there and nothing happens.
It works fine …
0
votes
5answers
24 views
while executing a shell script in Unix Bash Shell, how is a file location resolved for relative paths? rel. to the script.sh folder or the referenced file’s folder.
while executing a shell script in Unix Bash Shell, say any file in another folder and that is referenced by the script references some other file like ../../file_system_1/public/di …
0
votes
3answers
87 views
unix find command
how to use the find command to find files/directories which are not matching the pattern.
for eg:
find <some options > -name "dontfile.txt"
should give me output of all th …
0
votes
3answers
53 views
Is there a way to capture the output of a command, and its return value into variables in a shell script?
So, let's say that I have a command, foo, in a script which has both a return value, and an output string that I'm interested in, and I want to store those into a variable (well at …
0
votes
3answers
43 views
How to build one file contains other files, selected by mask?
I need to put the contents of all *.as files in some specified folder into one big file.
How can I do it in Linux shell?
103
votes
53answers
8k views
What are the dark corners of Vim your mom never told you about?
There is a plethora of questions where people talk about common tricks, notably this one.
However, I don't refer to commonly used shortcuts that a noob would find cool. I am talk …
2
votes
5answers
69 views
Shell variable with spaces , quoting for single command line option
Autoconf scripts have trouble with a filename or pathname with spaces. For example,
./configure CPPFLAGS="-I\"/path with space\""
results in (config.log):
configure:3012: gcc …
1
vote
2answers
51 views
Bash - Recursively Create Nonexistant Subdirectories
Hello all,
I am creating a quick backup script that will dump some databases into a nice/neat directory structure and I realized that I need to test to make sure that the director …
1
vote
4answers
64 views
Which (scripting) programming language to use for this simple web service?
I want to start a rather time consuming process using a web interface, so I obviously want it to run in a background (daemon) process and I'd also like to have a progress bar using …
