2
votes
Shell Script that goes up N folders in the file system
You are only changing the working directory for the copy of the shell that is running the script as an interpreter, not the original shell program that you launched the script from.
For a b …
2
votes
Bash script for downloading files with Curl
quoting the arguments correctly, rather than transforming them might be a better approach
It's quite normal to expect to have to quote spaces in arguments to shell scripts
e.g.
…
4
votes
BASH: Strip new-line character from string (read line)
I always like perl -ne 'chomp and print' , for trimming newlines. Nice and easy to remember.
e.g. ls -l | perl -ne 'chomp and print'
However …
