Tagged Questions
0
votes
1answer
29 views
Must pass urls in quotes
I'm trying pass a URL to mpv for it to play it as a network stream.
This can be done in bash with the following syntax:
$ mpv http://myvideosite.com
However, zsh wants to evaluate the URL as ...
2
votes
3answers
69 views
Sed - string substitution with groupings
I have a largish directory with filenames formatted like
Some_Folder-(FOL001)-clean
what I'm trying to do is display the pattern between the brackets at the start like
FOL001 ...
4
votes
4answers
857 views
Replace whole line in a file from command-line
I have a text file which has some contents similar to this:
# General information about the project.
project = u'Py6S'
copyright = u'2012, Robin Wilson'
# The version info for the project you're ...