TweetFollow Us on Twitter

MPW Special Chars
Volume Number:6
Issue Number:7
Column Tag:MPW Notes

MPW Special Characters

By Mark Andrews, Mountain View, CA

Using Special Characters In the Command Language

[Mark Andrews is the author of 15 computer books, including Atari Roots, Programming the Commodore 64 in Assembly Language, and Programming the Apple IIGS in Assembly Language and C. His newest book is Inside MPW, to be published this fall by Addison-Wesley. This article is an excerpt from Inside MPW.]

There are two ways to go about designing a computer language. You can construct it like a spoken language, so that it will be easy to learn and understand. Or you can design it using a more concise but less English-like model, so it will be faster, more efficient--and, all too often, quite difficult to master.

When the creators of MPW sat down to develop a shell language, they could have made it a lot more user-friendly. For instance, they could have used the word TOP instead of the character • to represent the beginning of a file, the word BOTTOM instead of the symbol to represent the bottom, and the word SELECTION instead of § to represent the currently selected, or highlighted, text. That kind of approach would have made learning the MPW shell language a much less formidable task than it has turned out to be.

There would have been tradeoffs, of course. Once you’ve mastered the MPW command language, it’s much faster to type a command like •: than it is to type something like FROM TOP TO BOTTOM SELECT ALL, which would be a possible alternative in a more English-like language. And a command interpreter can certainly parse three ASCII characters much faster than it could handle a long sequence of words in a more user-friendly language.

But that’s really all quite academic. Like it or not, the MPW shell language is what we’ve got, and if you want to use MPW, there’s no alternative but to learn the MPW command language.

Actually, MPW language uses two sets of special characters. One set is made up of the punctuation marks and other special symbols that are printed on the Macintosh keyboard. The other set comes from the Macintosh extended character set: the set of characters that you get when you press a key on your keyboard while holding the Option key down. And those extended characters can be a real headache when you’re trying to master MPW. Not only do you have to learn how they’re used in the command language; since they don’t appear on the keyboard, you also have to figure out--and then memorize--where to find them.

To make matters even more difficult, many special characters have more than one meaning in MPW; when they appear in one context, they mean one thing, and when they’re used in a different context, they often mean another.

The most notorious character with two meanings is undoubtedly the symbol  (Option-D). When the  character appears alone at the end of a line, MPW runs that line and the next line together, creating a single line. But when  precedes the letter n, it acts as an escape character and generates a return.

Think about this for a moment, and you’ll realize that the character  has two meanings that are exact opposites. Sometimes it deletes a return, and sometimes it creates one!

There are many other special characters that have more than one meaning in MPW. For example, an exclamation point means “not” in string and arithmetic operations, but stands for a line of text in certain editing operations. The character § sometimes stands for the current selection (either a block of highlighted text or the current position of the cursor), and sometimes stands for the name of a file. And so on.

One way to sort out the ambiguities in the special characters used by MPW would be to to list every meaning of every special character used in the MPW command language, and then to examine and resolve each ambiguity that you find. And that’s just what has been done in Table 1 (except those used as arithmetic and logical operators/in menu commands/as number prefixes in arithmetic and logical operations), which appears at the end of this article. In addition to listing the meanings and categories of all special characters used in the MPW language, it shows how to type each character, describes the syntax in which each character is used, and provides an example showing how each character can be used in a command.

In compiling Table 1, I discovered that the MPW command language character set contains fourteen distinct kinds of characters. Since no breakdown of this kind had been published until I started working on Inside MPW, I took the liberty to draw up my own list of categories. From this research, these were the categories that emerged:

• Whitespace characters

• Command terminators

• Wildcard characters

• The escape character 

• The line-continuation character 

• The comment character #

• Delimiters

• The command substitution character ‘

• Filename generation operators

• Selection expressions

• Regular expression operators

• Redirection operators

• The number prefixes $, 0x, 0b, and 0 (not in Table 1)

• Arithmetical and logical operators (not in Table 1)

• Special characters used in makefiles

Whitespaces and Command Terminators

In MPW, a command is defined as a series of words and regular expressions separated by whitespaces and ending with a command terminator. There are only two whitespace characters in the MPW command language: Space and Tab. You can use either character to generate a space in an MPW command.

The most commonly used command terminator is the Return. Unless a return is followed immediately by the line continuation character , it always ends a command. Another command terminator that you’ll often see is the semicolon (;). By using a semicolon as a command terminator, you can type more than one command on a line.

The special-character combinations && and || are logical operators as well as command terminators. If you separate two commands with the characters &&, the second command will be executed only if the first command succeeds. Conversely, if you separate two commands with the characters ||, the second command will be executed only if the first command fails.

Selection Expressions

Selection expressions used in MPW include • (Option 8), which represents the beginning of a file; (Option-5), which represents the end of a file; and § (Option-6) which represents the current selection. Another selection expression is the character  (Option-J), which can be used to represent either the beginning or the end of a selection.

Delimiters

Many kinds of delimiters are used in the MPW command language. When you want to include a space or a special character in a string or an expression, you must enclose the command in single or double quotation marks.

If you use single quotes around an expression, every special character in the expression is interpreted literally, instead of being interpreted as a special character. If you use double quotes, all characters in the expression are taken literally except curly brackets ({...}), the backquote character (‘), and the escape character . If you want to use a shell variable as part of an expression, you must enclose the expression in single quotes, since variables in MPW are always delimited by curly brackets. And if the definition of a variable contains white spaces, then the curly brackets that enclose the variable must themselves be enclosed in quotes, like this: “{MPW}”.

If you want to use an apostrophe in a string, and don’t want it be be interpreted as a single quote, you can put double quotes around the word containing the apostrophe. Or you can precede the apostrophe with the escape character .

The slash bar (/) and the backslash (\) are often used as delimiters with the commands, Find, Search, and Replace. When a string or expression delimited by slash bars (/.../) follows a Find command, Find searches in a forward direction. But when Find is followed by a string or expression enclosed in backslashes (\...\), the search goes in a backwards direction. Hence, to start at the beginning of a file and search for the beginning of the string “charlie,” you could execute the commands

Find • ; Find /charlie/

But if you wanted to start at the end of a file and search backwards for end of the string “charlie,” you could execute the commands

Find   ; Find \charlie\

One very interesting delimiter is the backquote character (‘). By placing a command between a pair backquote characters, you can pass its output to another command. For example, when you execute the command

Echo ‘Files -t TEXT‘

the Files command compiles a list of files of the type TEXT, and passes the list to the Echo command, which then prints the list on the screen.

If there were enough space in this magazine, I could examine every special character used in MPW, and present interesting examples for each one--and, in Inside MPW, that’s exactly what is done. Meanwhile, until the book comes out, take some time to study the examples in Table 1. Unless you’re already an MPW wizard, chances are they can tell you a lot about how to use special characters in MPW.

AppleLink: D3001

TABLE 1: Special Characters Used in MPW

Chr Press Category UsageMeaningExampleTranslation
##Comment#sCharacters between# A commentString following # is interpreted as a comment
# and terminator
are interpreted
as a comment
""Delimiter"s"Delimits a stringEcho "{MPW}" >>Echo the contents of the shell variable {MPW}
in which each "{Target}"to the target window
character is taken
literally, except
for , {}, and ‘
''Delimiter's'Delimits a stringEcho '{MPW}' >>Echo the string "{MPW}" to the target window
in which all "{Target}"
characters are
taken literally
((Delimiter(p)Delimits a groupFind /("*")+/Select a group of one or more asterisks
of characters that
form a pattern
))Delimiter(p)Delimits a groupFind /("*")+/Select a group of one or more asterisks
of characters that
form a pattern
//Delimiter/r/Searches forwardFind /delta/Search forward and select the word "delta"
and selects regular
expression
»Option-Shift-\
Delimiter«n»Delimits numberFind /[t]«2»/Select exactly two tabs
standing for number
of repetitions
»Option-Shift-\
Delimiter«n,»Delimits numberFind /[t]«2,»/Select two or more tabs
standing for at
least n repetitions
»Option-Shift-\
Delimiter«n1,n2»Delimits numberFind /[t]«2,4»/Select two to four tabs
standing for n to
n repetitions
«Option-\
Delimiter«n»Delimits numberFind /[t]«2»/Select exactly two tabs
standing for number
of repetitions
«Option-\
Delimiter«n,»Delimits numberFind /[t]«2,»/Select two or more tabs
standing for at
least n repetitions
«Option-\
Delimiter«n1,n2»Delimits numberFind /[t]«2,4»/Select two to four tabs
standing for n to
n repetitions
[[Delimiter[...]Delimits a patternFind /[A-F]/Search for any character in the set A-F
\\Delimiter\r\Searches backwardsFind \alpha\Search backwards and select the word "alpha"
and selects regular
expression
]]Delimiter[...]Delimits a patternFind /[A-F]/Search for any character in the set A-F
``Delimiterc1 `c2` Sends output ofEcho Files command sends its output to Echo command,
command c2 to `Files -t TEXT`which prints the output on the screen
command c1 for
processing
{{Delimiter{v}Delimits variable vEcho "{MPW}"Echoes contents of shell variable {MPW}
}}Delimiter{v}Delimits variable vEcho "{MPW}"Echoes contents of shell variable {MPW}
Option-D
EscapenReturnEcho nEcho a return
Option-D
EscapetTabEcho nEcho a tab
Option-D
EscapefForm feedEcho nEcho a form feed
Option-D
Escape¬Defeats the meaningEcho ¬Output: ¬
of the special
character that
follows it
**Filename op.n*Matches zero orX*Match zero or more occurrences of character X
more occurrences of
the preceding
character or
character list
++Filename op.r+Matches one or moreX+Match one or more occurrences of character X
occurrences of the
preceding character
or characters
?*?* (same as )
Filename op.?*Matches any number
?*.cMatc any filename with the extension ".c"
of any characters
in a filename
¬Option-L
Filename op.[¬list]Matches any
[¬A-F]Match any character that is not in the set A-F
character not in
the list
»Option-Shift-\Filename op.«n»Delimits number [X]«2»Match two occurrences of the character X
standing for number
of repetitions
«Option-\Filename op.«n»Delimits number[X]«2»Match two occurrences of the character X
standing for number
of repetitions
[[Filename op.[...]Delimits a pattern[A-F]Match any character in the set A-F
]]Filename op.[...]Delimits a pattern[A-F]Match any character in the set A-F
Filename op. Matches any number .cMatch any filename with the extension ".c"
of any characters
in a filename
Option-D
Line cont.l  lIf  stands alone(First line:)Output: How are you today?
at end of a line,Echo “How are 
MPW joins line to(Second line:)
next line, ignoringyou today?”
return
""Make"s"Delimits a str in"{CLibraries}"The C runtime libraries
which each charCRuntime.o
is taken literally,
except for , {},
and ‘
##Make#sCharacters between### DependencyString following # is interpreted as a comment.
# and terminator rules ###
are interpreted as
a comment
''Make's'Delimits a string'{CLibraries}'The C runtime libraries
in which allCRuntime.o
characters are
taken literally
Option-D
Makel  lIf  stands alone(First line:)Output: Sample ƒƒ Sample.p.o Sample.r
at end of a line,Sample ƒƒ
MPW joins line toSample.p.o 
next line, ignoring(Second line:)
returnSample.r
ƒOption-F
Makef1 ƒ f1File f1 depends onSample.p.o ƒ File Sample.p.o depends on file Sample.p
file f2Sample.p
ƒƒOption-F
Makef1 ƒƒ f1File f1 depends onSample ƒƒFile Sample depends on file Sample.p.o, and
file f2, and f2 hasSample.p.oSample p.o. has its own set of build commands
its own build cmds
<<Redirection<fStandard input iAlert < ErrorsDisplay an alert dialog containing the contents
taken fromof the file Errors
filename f
>>Redirection>fRedirects standardEcho "{Status}" Write contents of shell variable {Status} to
output, replacing> Errorsfile Errors, replacing its previous contents
contents of file f
>>>>Redirection>>fRedirects standardEcho "{Status}"Append contents of shell variable {Status} to
output, appending>> Errorsthe end of file Errors
it to contents of
file f
Option->
Redirection fRedirects (Files .p ||) List filenames that end in ".p". Send diagno-
diagnostics, Errorstics to file Errors, replacing its contents
replacing contents
of file f
Option->
Redirection fRedirects(Files .p ||) List filenames that end in ".p". Append
diagnostics, Errorsdiagnostics to end of file Errors
replacing contents
of file f
Option-W
Redirection fRedirects both (Files .p ||) List filenames ending in ".p". Send output,
standard output and Tempdiagnostics to file Temp, replacing its
diagnostics tocontents
file f
Option-W
Redirection fRedirects both(Files .p ||)List filenames ending in ".p". Append
standard output and Tempoutput and diagnostics to file Temp
diagnostics to
file f
!~!~
Reg.expr.op."s1" !~ True if s1 is notEcho `Evaluate Output: 1
/s2/ equal to s2"alpha" !~
/beta/`
**
Reg.expr.op.r*Selects zero or Find /('*’')+Select a group of one or more asterisks
more occurrences of '/'[rt ]*/followed by a slash bar and 0 or more white
regular expressionspaces
++Reg.expr.op.r+Selects one or more Find /('*')+'/'/Select a group of one or more asterisks
occurrences of
regular expression
--
Reg.expr.op.c1-c2 Stands for rangeFind Select any word made up of upper- and
of characters/[A-Za-z]+n/lower-case letters that appears at the end
between c1 and c2of a line
=~=~
Reg.expr.op."s1" True if s1 is equal Echo `Evaluate Output: 1
=~ /s2/to s2"beta" =~
/beta/‘`
:Colon
Reg.expr.op.s:sAll text between Find •: Select (highlight) all text in file
(two selections)
Option-5
Reg.expr.op.cmd -c
(With command that Replace -c Replace string "123" with string "456" every
takes a -c option): /123/ 456time it appears in target window
Repeats command to
end of file
Option-5Reg.expr.op.r
Selects regularFind /arlie /Select the letters "arlie" at the end of a line
expression at the
end of a line
Option-8Reg.expr.op.•r
Selects regular Find /•ch/Select letters "ch" at the beginning of a line.
expression at the
beginning of a line
Option-;Reg.expr.op.c
Executes "Commando" TileWindows Invoke TileWindows Commando
command, invokes
Commando dialog
for command c
¬Option-L
Reg.expr.op.[¬list]Any character not Replace -c /Replace all characters except A-Z, a-z, returns
in the list[¬A-Za-zn" "]and spaces with asterisks
/ "*"
®Option-R
Reg.expr.op.r®nTags regular Replace /([a-zReverse the order of two words separated by one
expression with a A-Z]+)®1[ ]+([or more spaces
number (range: 1-9)a-zA-Z]+)®2/
'®2 ®1'
!!Selection!nSelects the lineFind !3Select the third line after the current
that is n lines selection
after end of
current selection
!!Selectionr!nPlaces insertion Find /alpha/!3Place insertion point three characters after
point n characters the word "alpha"
after regular
expression
¡Option-!
Selection¡nPlaces insertion Find ¡3Place insertion point three lines before start
point n lines before of current selection
start of current
selection
Option-5
Selection End of fileFind Place insertion point after last character in
file
§Option-6
Selection§Current selectionCopy §Copy the current selection (highlighted text)
to the Clipboard
Option-8
SelectionBeginning of fileFind •Place insertion point before first character in
file
Option-J
SelectionrPlaces insertion Find /charlie/Place insertion point before first character in
point before first the word "charlie"
char in regular
expression
Option-J
SelectionPlaces insertion Find /charlie/Place insertion point after last character of
point after last the word "charlie"
character of
regular expression
&&&&
Terminatorc1 && c2 Executes command c2Find /charlie/ If string "charlie" is found, MPW echoes,
if command c1 && Echo Found!"Found!"
succeeds
;;
Terminatorc ; cTreats commands oEcho hello ; Output: (First line:) Hello (Second line:)
the same line as if Echo goodbyeGoodbye
they were on
different lines
Return
Separates Terminatorc (r)Ends commandEcho Hello(r)Output: Hello
commands
||
Terminatorc1 | c2
Pipes output of Files | Count -lFiles pipes a list of files to Count, which
command c1 to prints the list on the screen
input of c2
||||
Terminatorc1 || c2Executes command c2 Find /zebra/ Searches for string "zebra" and echoes "Sorry!"
if command c1 fails|| Echo Sorry!if search fails
SpSpace
Whitespacew wSeparates wordsEcho HelloOutput: Hello
TabTab
Whitespacew wSeparates wordsEcho HelloOutput: Hello
??Wildcard
?Matches any single Find /Bar?/Select any four-character word that begins with
character in a "Bar"
string
?*?* (same as )
Wildcardchars?*Matches any number Find /Mar?*/Select any word that begins with "Mar"
of occurrences of
any character
(same as )
Option-X
Wildcard Matches any number Find /Mar /Select any word that begins with "Mar"
of any characters
in a string

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Ableton Live 11.3.11 - Record music usin...
Ableton Live lets you create and record music on your Mac. Use digital instruments, pre-recorded sounds, and sampled loops to arrange, produce, and perform your music like never before. Ableton Live... Read more
Affinity Photo 2.2.0 - Digital editing f...
Affinity Photo - redefines the boundaries for professional photo editing software for the Mac. With a meticulous focus on workflow it offers sophisticated tools for enhancing, editing and retouching... Read more
SpamSieve 3.0 - Robust spam filter for m...
SpamSieve is a robust spam filter for major email clients that uses powerful Bayesian spam filtering. SpamSieve understands what your spam looks like in order to block it all, but also learns what... Read more
WhatsApp 2.2338.12 - Desktop client for...
WhatsApp is the desktop client for WhatsApp Messenger, a cross-platform mobile messaging app which allows you to exchange messages without having to pay for SMS. WhatsApp Messenger is available for... Read more
Fantastical 3.8.2 - Create calendar even...
Fantastical is the Mac calendar you'll actually enjoy using. Creating an event with Fantastical is quick, easy, and fun: Open Fantastical with a single click or keystroke Type in your event details... Read more
iShowU Instant 1.4.14 - Full-featured sc...
iShowU Instant gives you real-time screen recording like you've never seen before! It is the fastest, most feature-filled real-time screen capture tool from shinywhitebox yet. All of the features you... Read more
Geekbench 6.2.0 - Measure processor and...
Geekbench provides a comprehensive set of benchmarks engineered to quickly and accurately measure processor and memory performance. Designed to make benchmarks easy to run and easy to understand,... Read more
Quicken 7.2.3 - Complete personal financ...
Quicken makes managing your money easier than ever. Whether paying bills, upgrading from Windows, enjoying more reliable downloads, or getting expert product help, Quicken's new and improved features... Read more
EtreCheckPro 6.8.2 - For troubleshooting...
EtreCheck is an app that displays the important details of your system configuration and allow you to copy that information to the Clipboard. It is meant to be used with Apple Support Communities to... Read more
iMazing 2.17.7 - Complete iOS device man...
iMazing is the world’s favourite iOS device manager for Mac and PC. Millions of users every year leverage its powerful capabilities to make the most of their personal or business iPhone and iPad.... Read more

Latest Forum Discussions

See All

Motorsport legends NASCAR announce an up...
NASCAR often gets a bad reputation outside of America, but there is a certain charm to it with its close side-by-side action and its focus on pure speed, but it never managed to really massively break out internationally. Now, there's a chance... | Read more »
Skullgirls Mobile Version 6.0 Update Rel...
I’ve been covering Marie’s upcoming release from Hidden Variable in Skullgirls Mobile (Free) for a while now across the announcement, gameplay | Read more »
Amanita Design Is Hosting a 20th Anniver...
Amanita Design is celebrating its 20th anniversary (wow I’m old!) with a massive discount across its catalogue on iOS, Android, and Steam for two weeks. The announcement mentions up to 85% off on the games, and it looks like the mobile games that... | Read more »
SwitchArcade Round-Up: ‘Operation Wolf R...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for September 21st, 2023. I got back from the Tokyo Game Show at 8 PM, got to the office here at 9:30 PM, and it is presently 11:30 PM. I’ve done what I can today, and I hope you enjoy... | Read more »
Massive “Dark Rebirth” Update Launches f...
It’s been a couple of months since we last checked in on Diablo Immortal and in that time the game has been doing what it’s been doing since its release in June of last year: Bringing out new seasons with new content and features. | Read more »
‘Samba De Amigo Party-To-Go’ Apple Arcad...
SEGA recently released Samba de Amigo: Party-To-Go () on Apple Arcade and Samba de Amigo: Party Central on Nintendo Switch worldwide as the first new entries in the series in ages. | Read more »
The “Clan of the Eagle” DLC Now Availabl...
Following the last paid DLC and free updates for the game, Playdigious just released a new DLC pack for Northgard ($5.99) on mobile. Today’s new DLC is the “Clan of the Eagle" pack that is available on both iOS and Android for $2.99. | Read more »
Let fly the birds of war as a new Clan d...
Name the most Norse bird you can think of, then give it a twist because Playdigious is introducing not the Raven clan, mostly because they already exist, but the Clan of the Eagle in Northgard’s latest DLC. If you find gathering resources a... | Read more »
Out Now: ‘Ghost Detective’, ‘Thunder Ray...
Each and every day new mobile games are hitting the App Store, and so each week we put together a big old list of all the best new releases of the past seven days. Back in the day the App Store would showcase the same games for a week, and then... | Read more »
Urban Open-World RPG ‘Project Mugen’ Fro...
Last month, NetEase Games revealed a new free to play open world RPG tentatively titled Project Mugen for mobile, PC, and consoles. I’ve liked the setting and aesthetic since its first trailer, and today’s new video has the Game Designer and... | Read more »

Price Scanner via MacPrices.net

Apple AirPods 2 with USB-C now in stock and o...
Amazon has Apple’s 2023 AirPods Pro with USB-C now in stock and on sale for $199.99 including free shipping. Their price is $50 off MSRP, and it’s currently the lowest price available for new AirPods... Read more
New low prices: Apple’s 15″ M2 MacBook Airs w...
Amazon has 15″ MacBook Airs with M2 CPUs and 512GB of storage in stock and on sale for $1249 shipped. That’s $250 off Apple’s MSRP, and it’s the lowest price available for these M2-powered MacBook... Read more
New low price: Clearance 16″ Apple MacBook Pr...
B&H Photo has clearance 16″ M1 Max MacBook Pros, 10-core CPU/32-core GPU/1TB SSD/Space Gray or Silver, in stock today for $2399 including free 1-2 day delivery to most US addresses. Their price... Read more
Switch to Red Pocket Mobile and get a new iPh...
Red Pocket Mobile has new Apple iPhone 15 and 15 Pro models on sale for $300 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide service using all the major... Read more
Apple continues to offer a $350 discount on 2...
Apple has Studio Display models available in their Certified Refurbished store for up to $350 off MSRP. Each display comes with Apple’s one-year warranty, with new glass and a case, and ships free.... Read more
Apple’s 16-inch MacBook Pros with M2 Pro CPUs...
Amazon is offering a $250 discount on new Apple 16-inch M2 Pro MacBook Pros for a limited time. Their prices are currently the lowest available for these models from any Apple retailer: – 16″ MacBook... Read more
Closeout Sale: Apple Watch Ultra with Green A...
Adorama haș the Apple Watch Ultra with a Green Alpine Loop on clearance sale for $699 including free shipping. Their price is $100 off original MSRP, and it’s the lowest price we’ve seen for an Apple... Read more
Use this promo code at Verizon to take $150 o...
Verizon is offering a $150 discount on cellular-capable Apple Watch Series 9 and Ultra 2 models for a limited time. Use code WATCH150 at checkout to take advantage of this offer. The fine print: “Up... Read more
New low price: Apple’s 10th generation iPads...
B&H Photo has the 10th generation 64GB WiFi iPad (Blue and Silver colors) in stock and on sale for $379 for a limited time. B&H’s price is $70 off Apple’s MSRP, and it’s the lowest price... Read more
14″ M1 Pro MacBook Pros still available at Ap...
Apple continues to stock Certified Refurbished standard-configuration 14″ MacBook Pros with M1 Pro CPUs for as much as $570 off original MSRP, with models available starting at $1539. Each model... Read more

Jobs Board

Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Retail Key Holder- *Apple* Blossom Mall - Ba...
Retail Key Holder- APPLE BLOSSOM MALL Brand: Bath & Body Works Location: Winchester, VA, US Location Type: On-site Job ID: 03YM1 Job Area: Store: Sales and Support Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.