a POSIX-compliant shell implementation that aims to be as small as possible.
0
votes
0answers
5 views
MPEG DASH - do I need to have audio and video tracks as seperate source file for creating DASH package using mp4box
I have one source mp4, I tried to create MPEG DASH package using mp4box by GPAC.
I am able to play output MPD files in OSMO4 player by GPAC.
However I am not able to play the same in DASH JS player ...
1
vote
3answers
30 views
Build a sed script from specific environment variables
I need to have a very basic template system in shell to port a windows installer to linux. So I can not change the syntax of the template variables.
I want to take specific environment variables ...
0
votes
0answers
22 views
How to validate “minBufferTime” in DASH mpd?
From std MPEG_DASH_c057623_ISO_IEC_23009-1_2012 spec, came to know as follows
The client buffers media of for at least value of @minBufferTime attribute duration before starting the presentation.
...
0
votes
2answers
28 views
PHP Regex to match words with dash right infront and save to array?
i'm wondering what kind of regex I could use to essentially extract all the words that have a dash infront of them in a given string. I'm going to be using it to allow users to omit certain words from ...
6
votes
6answers
188 views
Add/subtract variables in a really dumb shell
I am writing a shell script which works on my local /bin/sh fine (dash on Ubuntu 13.04), but I unltimately need to run it on a dumb box where I'm getting an error because of an operation on variables:
...
0
votes
3answers
64 views
Redirector “<<<” in Ubuntu?
I'm getting this error
Syntax error: redirection unexpected
in the line:
if grep -q "^127.0.0." <<< "$RESULT"
How I can run this in Ubuntu?
0
votes
2answers
37 views
Execute Command From String Dash Linux
So i am trying to learn how to write scripts for Linux OS's so I wrote this download and install script. Although, I know that any good coder for linux would think this is absolute skid work, It works ...
2
votes
4answers
69 views
shell - Characters contained in both strings - edited
I want to compare two string variables and print the characters that are the same for both. I'm not really sure how to do this, I was thinking of using comm or diff but I'm not really sure the right ...
1
vote
1answer
47 views
shell - Insert a character at different indexes in a string
It will eventually be part of a larger script so it needs to be shell scripted. A simple task in other languages, but I'm having trouble accomplishing it in shell. Basically I have a string and I want ...
0
votes
1answer
36 views
/bin/dash cannot find hostname
I have newly installed a remastered ubuntu 12.10. after installation I ran a script to make a standard user and do some other works. now when I log into the new standard user and open terminal, it ...
-1
votes
2answers
54 views
Dash on the end of javascript object property
can i use dash on the end of javascript object property name like this. I could not find in any documentation that this is not valid but i got some strange results when trying to access value myProp- ...
0
votes
1answer
110 views
Error compiling and building DashEncoder code and how to play the .mpd file when generated
I'm trying to build the DashEncoder code which I downloaded from github https://github.com/slederer/DASHEncoder. Well, I followed all the instructions given in the how to compile dash file. installed ...
1
vote
0answers
155 views
Pure Java MPEG DASH library [closed]
Is there any PURE Java open source project to deal with MPEG4 or MPEG-DASH (aka MPEG Dash) without using native C or C++ libraries out there?
1
vote
1answer
57 views
How Do I Specify a Keyword for Dash with Doxygen?
I am using Doxygen for generating documentation for my project, which generates docsets that work almost perfectly with dash.
What I want to know is how to set the search keyword in dash; the default ...
3
votes
2answers
85 views
Dash variable expansion does not work in some cases
This work is being done on a test virtualbox machine
In my /root dir, i have created the following:
"/root/foo"
"/root/bar"
"/root/i have multiple words"
Here is the (relevant)code I currently have
...
0
votes
1answer
71 views
IFS Split String to arrays
In the dash shell environment I am looking to split a string into arrays. The following code works in bash but not in dash.
IFS=""
var="this is a test|second test|the quick brown fox jumped over the ...
0
votes
1answer
125 views
yum update ignores exclude when called in script
So, I'm trying out an update (upgrade) script for CentOS
I have a Virtualbox VM for testing, on which I have a snapshot to which I can roll back
The script is written in dash (not bash)
These are ...
1
vote
1answer
166 views
Em Dash and En Dash from MySQL Db with PHP
I'm trying out output a MySQL database field with PHP which contains em dash and en dash, but although the ROWs output, the values with these dashes do not.
As far as I am aware, these are characters ...
0
votes
0answers
89 views
How to restart all screenlets from the terminal/a script?
I am writing a dash script which modifies the Screenlets[1] configuration files and to apply these changes I must manually restart Screenlets by clicking on the Screenlets Daemon applet and selecting ...
0
votes
1answer
132 views
While exporting a file to excel double dash gets converted to #value [closed]
I have written a code in java which exports some data into excel format, but eventually when file gets downloaded, any data which precedes with -- gets converted to #. Can anyone please let me know ...
3
votes
3answers
108 views
Is setting a Linux shell other than /bin/sh problematic?
My company is starting to grow our Linux support and some of our shell scripts are starting to get more complex. Today we use the shebang as
#! /bin/sh
but we are having problems with some distros ...
-2
votes
3answers
73 views
what does the dash (-) do in html?
I'm having a problem (see 2 screenshots):
1
2
The problem is "SyntaxError: identifier starts immediately after numeric literal"
This data im trying to send through the ajax script is html, ...
0
votes
1answer
131 views
Challenge with hyphens/dashes in Solr Lucene
I'm trying to cause Solr to extract only the second 7 digit portion of a ticket formatted like n-nnnnnnn
Originally I hoped to keep the full ticket together. According to documentation digits with ...
4
votes
0answers
174 views
solr 3.6.1 splitting word boundaries at a dash
We have a trouble ticket format of numerics divided by a dash i.e., n-nnnnnnn
The link http://lucidworks.lucidimagination.com/display/solr/Tokenizers (in the sections on Standard Tokenizer and ...
0
votes
2answers
41 views
dash inside listview
hello I need to add a dash (-) in an input, if the user puts 4569 display 45-69 or if the user put 568923 display 56-89-23, I use sub string, but it get me and error invalid input,
I use a list view, ...
1
vote
2answers
117 views
Insert hyphen into wrap function
beginner here. I'm writing a wrap function in C which is working OK if all the words from the string I pass are smaller than the size of the line I define. e.g.: if I want to wrap after 20 characters ...
1
vote
2answers
175 views
How to Input Dash After Every 4th Character in Objective-C
I have a UITextField that gets a credit card input. How can I automatically insert a dash after the user inputs a 4th character just like how the Groupon app for iOS does it when a user is typing his ...
0
votes
3answers
86 views
Assigning dynamic value to variable
how can I assign a dynamic value to variable? The simplest method I know about is by using a function. For example
fn(){
VAR=$VAL
}
VAL=value
fn
echo $VAR
will output
value
but I want ...
0
votes
2answers
329 views
How to Format NSString to Include Dash in Objective-C
I have a UITextfield that contains a credit card number. I want to convert the credit card number that the user inputs in the UITextField to have dashes. An example would be:
From: 1021 3151 1641 ...
0
votes
2answers
111 views
Replace a certain substring with dashes in betweenn - python
Is there any string manipulation in python that can achieves the following input and output? If i'm going to use regex how would the regex expression look like to replace the substring?
#inputs
y = ...
1
vote
0answers
303 views
ASP.NET MVC 4 - Allow dashes / hypens in URL's
I am struggling how to properly allow dashes / hypens in a URL in my MVC 4 / ASP.NET 4.5 app...for some reason MVC converts the dashes to underscores which is not what i want.
I've done a good bit of ...
2
votes
2answers
300 views
How to regex compare a string in dash?
I'm moving a bash script to dash for compatibility reasons. Is there a POSIX/Dash alternative to the following comparison?
...
0
votes
2answers
82 views
generating postgis docset documentation with doxygen
first of all sorry for dumb question, it's my first time here.
I'm trying to generate docset documentation from PostGis 2 and explore it with Dash, the snippet manager for MacOsX ...
1
vote
2answers
286 views
In a shell script, how do I replace the first occurrence of a string, after a different string
I have a simple config file that looks a bit like this:
[sectionA]
url = value1
username = value2
password = value3
[sectionC]
url = value1
username = value2
password = value3
[sectionB]
url = ...
0
votes
1answer
126 views
Wordpress title, specific font and a dash character
I have a problem in Wordpress, which I have never experienced before.
I have a title on a Custom Post Type post with a title containing a dash (-). This title has a specifik font implemented with ...
6
votes
1answer
264 views
Why are border colors inverted when a background gradient is applied?
I've stumbled upon something weird. When applying a dashed white border to an element, the colors of the background gradient appear on the wrong side of the element, like so:
I've seen this in the ...
2
votes
1answer
660 views
gnuplot dashed lines in aqua terminal
I am using gnuplot 4.4 patchlevel 4 on Mac OS X v10.6.8. I'm running a gnuplot script, a simplified version of which is this: (file1, file2,...etc are specified in the terminal before running the ...
3
votes
1answer
270 views
Is there a category or name for characters like smart quotes and that dash that always breaks?
Many have probably experienced copying some text from Word into a website form or something, and all the quotes ('), double quotes ("), and dashes (-) get garbled. I believe the quotes are called ...
2
votes
1answer
183 views
Converting phpdoc to docset usable by Dash
I'm trying to get the Magento Documentation in a format which I can use in Dash. An article on the Dash website describes how to import a number of types of documentation into the required format, ...
1
vote
1answer
394 views
Python: argparse optional arguments without dashes
I would like to have the following syntax:
python utility.py file1 FILE1 file2 FILE2
where file1 and file2 are optional arguments.
It is simple to make it working with this syntax:
python ...
1
vote
1answer
108 views
Converting a list with dashes into numbers
I made a list from a CSV file. It looks like this:
['18', '29', '0'...'0', '-14', '9']
It had a text element in the beginning, which I popped. Now, Python doesn't work with the list elements as ...
2
votes
1answer
2k views
How to set dashed border for UITextView / UITextField on iphone
i want to set a dashed border for my UITextField and UITextView.
how can i do that? i know that i can set border with this line of code:
[self.textFieldCardTitle.layer setBorderWidth:1.0];
...
0
votes
5answers
706 views
jQuery selector for divs with a dash on the class name?
I'm trying to reference all img in an element. See my example below.
<div class="entry">
<div class="entry-content">
<p><img src="something.jpg" /></p>
...
18
votes
4answers
7k views
How to put a “-” in string.xml file
I need to be able to put a "-" in the string inside my strings.xml file.
My problam is that when I'm putting my string which is "1261eba2-9d8c-11e1-93e3-40409e0f44a1" the eclipse yells:
Multiple ...
1
vote
1answer
1k views
C# Zedgraph Change Line Dash Length
I'm trying to change the length of the Dashes on the Zed Graph line. I would like to have larger gaps between the solid lines.
example of my code
LineItem LineCurve = null
LineCurve = ...
3
votes
2answers
184 views
MySQL: How to order by (-) dash
How can I order by dash?
For instance, I have these data below,
page_id url
1 - a
2 - b
3 --- c
4 --- d
5 - e
6 - f
7 -- g
8 -- h
...
0
votes
1answer
122 views
Matplotlib: how to set dashes in a dictionary?
Can anybody tell me how to use a custom dash sequence in a dictionary. I cannot get that running and the only thing I cannot work with (not a programmer) is the documentation =-(
def lineCycler(): ...
1
vote
0answers
168 views
Dashed line in Silverlight 4
I am trying to find some examples or some ideas how to draw a Path with dashes only on one side.
As you understand, DashArray is not suitable there. My proposal is to create dashes manually but it ...
0
votes
2answers
161 views
php simplexml_load_file with a dash ( - )
Hi I'm struggling to get data from an xml file in php...
the xml file is here: http://musicbrainz.org/ws/2/artist/8bfac288-ccc5-448d-9573-c33ea2aa5c30?inc=release-groups
and so far after loading it ...
1
vote
2answers
229 views
javascript Regex trim up to 'space' AND 'dash' or match
I asked a similar question before and got the correct response. This time though I would rather try and get two variables for the name after the 'By' and the 'Date' separately.
The problem with the ...


