CNC Operator 2nd Shift
$23 - $26 per hourDanfoss LLC
${titleText} `); let grid = columnOne.querySelector('.job-grid'); let allTokens = Array.from(columnOne.querySelectorAll('.joblayouttoken')); // --- 1. CAPTURE VARIABLES FOR BUSINESS RULES --- let jobLocationValue = ""; let countryRegionValue = ""; let regionValue = ""; let ipeLevelValue = null; let employeeGroupValue = ""; // --- INTERNAL USER VALIDATION VIA CUSTOM PLUGIN --- // Reads global flags injected by the authentication plugin let pluginWindowCheck = !!window.isSFInternalUser; let pluginSessionCheck = sessionStorage.getItem('SF_Internal_User') === 'true'; let isInternalPortal = pluginWindowCheck || pluginSessionCheck; // Iterate through all tokens to capture their values before manipulating the DOM allTokens.forEach(el => { let labelEl = el.querySelector('.joblayouttoken-label'); if (!labelEl) return; let labelText = labelEl.innerText; let propId = generatePropertyId(labelText); let valueEl = el.querySelector('.rtltextaligneligible'); let valueText = valueEl ? valueEl.textContent.trim() : ""; if (propId === "JobLocation") { jobLocationValue = valueText; } else if (propId === "CountryRegion") { countryRegionValue = valueText; } else if (propId === "Region") { regionValue = valueText; } else if (propId === "IPELevel") { let match = valueText.match(/d+/); if (match) ipeLevelValue = parseInt(match[0], 10); } else if (propId === "EmployeeGroup") { employeeGroupValue = valueText.toLowerCase(); } }); // --- 2. BUSINESS RULES VALIDATION --- let isSalaryPaid = employeeGroupValue.includes('salary'); let isIpeValid = ipeLevelValue !== null && ipeLevelValue <= 61; // Normalize locations for matching let fullLocationLower = (jobLocationValue + " " + countryRegionValue).toLowerCase(); let isUSJob = fullLocationLower.includes("usa") || fullLocationLower.includes("united states"); let allowedUSStates = ["california", "colorado", "delaware", "hawaii", "illinois", "maryland", "massachusetts", "minnesota", "nevada", "new jersey", "new york", "vermont", "washington", "d.c."]; let allowedUSAbbr = ["ca", "co", "de", "hi", "il", "md", "ma", "mn", "nv", "nj", "ny", "vt", "wa", "dc"]; let allowedGlobalCountries = ["austria", "slovakia", "lithuania", "latvia", "canada"]; // Salary Range Visibility Rule let isSalaryLocationValid = false; if (isUSJob) { let hasFullStateName = allowedUSStates.some(state => fullLocationLower.includes(state)); let hasStateAbbr = allowedUSAbbr.some(abbr => { let regex = new RegExp(`${abbr}`); return regex.test(fullLocationLower); }); isSalaryLocationValid = hasFullStateName || hasStateAbbr; } else { isSalaryLocationValid = allowedGlobalCountries.some(country => fullLocationLower.includes(country)); } // Job Level Visibility Rule (Legacy locations + EER Region) let allowedJobLevelLocations = ["austria", "slovakia", "lithuania", "latvia"]; let isJobLevelLocationValid = allowedJobLevelLocations.some(loc => fullLocationLower.includes(loc)); let isEERRegion = regionValue.toUpperCase().trim() === "EER"; // Final flags to determine if the fields should be shown let showSalaryRange = isSalaryLocationValid && isIpeValid && isSalaryPaid; let showJobLevel = (isJobLevelLocationValid || isEERRegion) && isIpeValid && isSalaryPaid && isInternalPortal; // --- 3. TOKEN PROCESSING AND DISPLAY --- let keepAddingToGrid = true; allTokens.forEach(el => { // Stop adding elements to the grid once the job description starts if (!keepAddingToGrid || el.querySelector('[itemprop="description"]')) { return; } let labelEl = el.querySelector('.joblayouttoken-label'); if (labelEl) { let labelText = labelEl.innerText; let customPropertyid = generatePropertyId(labelText); // --- ABSOLUTE REMOVAL OF LOGIC-ONLY TOKENS --- if ( customPropertyid === "EmployeeGroup" || customPropertyid === "CountryRegion" || customPropertyid === "Region" || customPropertyid === "IPELevel" ) { el.style.display = 'none'; // Force visual hiding el.remove(); // Remove from DOM return; } // --- APPLY VISIBILITY BUSINESS FILTERS --- if (customPropertyid === "SalaryRange" && !showSalaryRange) { el.style.display = 'none'; el.remove(); return; } if (customPropertyid === "JobLevel" && !showJobLevel) { el.style.display = 'none'; el.remove(); return; } // Cosmetic adjustment for short labels if (labelText.includes("(Short)")) { labelEl.innerText = labelText.replace(/(Short)/g, "(s)"); } // Append custom icons based on the mapped property ID let elType = labelEl.nextElementSibling; if (elType) { let icon = ''; let iconUrl = ''; switch (customPropertyid) { case 'JobLocation': icon = 'glyphicon-map-marker'; break; case 'BusinessUnit': icon = 'glyphicon-briefcase'; break; case 'JobCategory': icon = 'glyphicon-dashboard'; break; case 'EmploymentType': icon = 'glyphicon-star-empty'; break; case 'ReqID': icon = 'glyphicon-calendar'; break; case 'WorkLocationType': icon = 'glyphicon-paste'; break; case 'JobLevel': iconUrl = ''; break; case 'SalaryRange': iconUrl = ''; break; case 'TAPartner': iconUrl = ''; break; default: icon = ''; } let iconHtml = ''; if (icon) { iconHtml = ``; } else if (iconUrl) { iconHtml = ``; } labelEl.parentElement.insertAdjacentHTML('beforebegin', `
${iconHtml}`); let wrapper = el.querySelector(`.job-token-${customPropertyid}-wrapper`); wrapper.appendChild(labelEl.parentElement); // Clean up empty text nodes let emptySibling = document.querySelector(`.job-token-${customPropertyid}-wrapper`).nextSibling; if(emptySibling && emptySibling.nodeType === 3) emptySibling.remove(); } // Flag to stop processing grid items when TA Partner is reached if (customPropertyid === "TAPartner") { keepAddingToGrid = false; } } grid.appendChild(el); }); }});/** * Robust Mapping Function * Scans the label for keywords, effectively bypassing any issues caused by translations. */function generatePropertyId(jobLayoutTokenLabel) { let normalized = jobLayoutTokenLabel.toLowerCase(); // Helper function to search for keywords regardless of formatting or active language const contains = (arr) => arr.some(keyword => normalized.includes(keyword)); if (contains(["employee group"])) return "EmployeeGroup"; if (contains(["ipe level", "ipe"])) return "IPELevel"; // Order matters: 'country' will correctly match 'country/region' if (contains(["country", "land", "pas", "pays", "paese", "kraj", "krajina"])) return "CountryRegion"; if (contains(["region", "regin", "rgion", "??????", "??"])) return "Region"; if (contains(["posting job location", "joblokation", "job location", "jobsted", "arbeitsort", "ubicacin", "site de l'emploi", "lokalizacja", "??????????????", "miesto", "????", "sede di lavoro"])) return "JobLocation"; if (contains(["salary range", "recruitment salary", "lninterval", "gehaltsspanne", "przedzia? wynagrodzenia", "fourchette", "rango salarial", "mzdov rozptie", "lnramme", "???????? ????????"])) return "SalaryRange"; if (contains(["posting job level", "job level", "jobniveau", "joblevel", "nivel del puesto", "niveau du poste", "poziom stanowiska", "??????? ?????????", "rove? pozcie"])) return "JobLevel"; if (contains(["employment type", "ansttelse", "beschftigungsart", "tipo de emprego", "type d'emploi", "rodzaj zatrudnienia", "??? ?????????", "typ pracovnho pomeru", "????", "tipologia di impiego", "tipo de empleo"])) return "EmploymentType"; if (contains(["work location type", "arbejdsstedstype", "arbeitsmodell", "tipo de ubicacion", "emplacement de travail", "miejsca pracy", "?????? ??????", "vkonu prce", "??????", "modalit di lavoro"])) return "WorkLocationType"; if (contains(["job category", "jobkategori", "stellenkategorie", "categora", "catgorie", "kategoria", "????????? ?????????", "kategria", "????", "area professionale"])) return "JobCategory"; if (contains(["business unit", "segment", "segmento", "firmaenhed", "unternehmenseinheit", "jednostka biznesowa", "???????", "????"])) return "BusinessUnit"; if (contains(["req id", "rek-id", "kennung", "id de solicitud", "identifiant de la demande", "identyfikator", "?????????????", "id pracovn pozcie", "?? id", "identifika?n", "id posizione", "requisition id", "stellen-id"])) return "ReqID"; if (contains(["ta partner", "partenaire ta"])) return "TAPartner"; // Default fallback if no keywords are matched return jobLayoutTokenLabel.replace(/[s:()][]/g,'');}
Req ID: 50926
Job Location: Easley, SC, US
Employment Type: Full Time
Segment: Danfoss Power Solutions Segment
Job Category: Supply Chain and Operations
Work Location Type: On-site
Job Title: CNC Operator 2nd Shift
The Impact You'll Make Danfoss in Easley, SC currently has an open position for a 2nd Shift CNC Operator. The CNC Operator will be responsible for a broad range of duties, including operating CNC machines as well as secondary machines, and performing quality inspections as needed to ensure high standards are maintained. The schedule is Monday through Friday, 3:00 pm to 11:30 pm. The position offers a wage range of $23.00 - $26.00 per hour, plus a $1.50 premium for the 2nd shift Employees are eligible for benefits on the first day of employment which include medical, dental, vision, 401(k), tuition reimbursement, annual bonus program, paid parental leave for birthing and non-birthing parents, a great working environment including 100% climate-controlled facility and much more! Danfoss offers 3 weeks paid PTO accrued over each bi-weekly paycheck plus 13 paid holidays including annual paid shutdown week between Christmas and New Year's. We pride ourselves on growing our human potential and encouraging career growth within our facilities.
What You'll Be Doing
${iconHtml}`); let wrapper = el.querySelector(`.job-token-${customPropertyid}-wrapper`); wrapper.appendChild(labelEl.parentElement); // Clean up empty text nodes let emptySibling = document.querySelector(`.job-token-${customPropertyid}-wrapper`).nextSibling; if(emptySibling && emptySibling.nodeType === 3) emptySibling.remove(); } // Flag to stop processing grid items when TA Partner is reached if (customPropertyid === "TAPartner") { keepAddingToGrid = false; } } grid.appendChild(el); }); }});/** * Robust Mapping Function * Scans the label for keywords, effectively bypassing any issues caused by translations. */function generatePropertyId(jobLayoutTokenLabel) { let normalized = jobLayoutTokenLabel.toLowerCase(); // Helper function to search for keywords regardless of formatting or active language const contains = (arr) => arr.some(keyword => normalized.includes(keyword)); if (contains(["employee group"])) return "EmployeeGroup"; if (contains(["ipe level", "ipe"])) return "IPELevel"; // Order matters: 'country' will correctly match 'country/region' if (contains(["country", "land", "pas", "pays", "paese", "kraj", "krajina"])) return "CountryRegion"; if (contains(["region", "regin", "rgion", "??????", "??"])) return "Region"; if (contains(["posting job location", "joblokation", "job location", "jobsted", "arbeitsort", "ubicacin", "site de l'emploi", "lokalizacja", "??????????????", "miesto", "????", "sede di lavoro"])) return "JobLocation"; if (contains(["salary range", "recruitment salary", "lninterval", "gehaltsspanne", "przedzia? wynagrodzenia", "fourchette", "rango salarial", "mzdov rozptie", "lnramme", "???????? ????????"])) return "SalaryRange"; if (contains(["posting job level", "job level", "jobniveau", "joblevel", "nivel del puesto", "niveau du poste", "poziom stanowiska", "??????? ?????????", "rove? pozcie"])) return "JobLevel"; if (contains(["employment type", "ansttelse", "beschftigungsart", "tipo de emprego", "type d'emploi", "rodzaj zatrudnienia", "??? ?????????", "typ pracovnho pomeru", "????", "tipologia di impiego", "tipo de empleo"])) return "EmploymentType"; if (contains(["work location type", "arbejdsstedstype", "arbeitsmodell", "tipo de ubicacion", "emplacement de travail", "miejsca pracy", "?????? ??????", "vkonu prce", "??????", "modalit di lavoro"])) return "WorkLocationType"; if (contains(["job category", "jobkategori", "stellenkategorie", "categora", "catgorie", "kategoria", "????????? ?????????", "kategria", "????", "area professionale"])) return "JobCategory"; if (contains(["business unit", "segment", "segmento", "firmaenhed", "unternehmenseinheit", "jednostka biznesowa", "???????", "????"])) return "BusinessUnit"; if (contains(["req id", "rek-id", "kennung", "id de solicitud", "identifiant de la demande", "identyfikator", "?????????????", "id pracovn pozcie", "?? id", "identifika?n", "id posizione", "requisition id", "stellen-id"])) return "ReqID"; if (contains(["ta partner", "partenaire ta"])) return "TAPartner"; // Default fallback if no keywords are matched return jobLayoutTokenLabel.replace(/[s:()][]/g,'');}
Req ID: 50926
Job Location: Easley, SC, US
Employment Type: Full Time
Segment: Danfoss Power Solutions Segment
Job Category: Supply Chain and Operations
Work Location Type: On-site
Job Title: CNC Operator 2nd Shift
The Impact You'll Make Danfoss in Easley, SC currently has an open position for a 2nd Shift CNC Operator. The CNC Operator will be responsible for a broad range of duties, including operating CNC machines as well as secondary machines, and performing quality inspections as needed to ensure high standards are maintained. The schedule is Monday through Friday, 3:00 pm to 11:30 pm. The position offers a wage range of $23.00 - $26.00 per hour, plus a $1.50 premium for the 2nd shift Employees are eligible for benefits on the first day of employment which include medical, dental, vision, 401(k), tuition reimbursement, annual bonus program, paid parental leave for birthing and non-birthing parents, a great working environment including 100% climate-controlled facility and much more! Danfoss offers 3 weeks paid PTO accrued over each bi-weekly paycheck plus 13 paid holidays including annual paid shutdown week between Christmas and New Year's. We pride ourselves on growing our human potential and encouraging career growth within our facilities.
What You'll Be Doing
- Proven expertise in accurately inspecting tools, identifying those requiring replacement, assembling tools, and performing precise measurements.
- Comprehensive understanding of blueprints and tolerances, including advanced skills in reading prints that detail geometric tolerances, finish specifications, and exact positioning.
- Demonstrated proficiency in operating the pre-setter, executing set-ups, and efficiently managing load and unload tasks.
- Perform all routine machine maintenance in accordance with TPM protocols.
- Experienced in utilizing the DLOG system on machines to accurately document work stoppage codes.
- Candidates must have comprehensive technical expertise in machining processes.
- A high school diploma or GED equivalent is required. Fundamental math skills are essential.
- The role requires the ability to stand for extended periods and to lift up to 50 lbs repeatedly.
- Experience in machining is preferred. Strong motor skills are critical. Clear and legible reading and writing abilities are necessary.
- Working safely while wearing protective equipment is mandatory. Applicants must have legal authorization to work in the U.S. without company sponsorship.
- We promote from within and support your learning with mentoring, training, and access to global opportunities.
- You'll have flexibility, autonomy, and support to do your best work while maintaining a healthy work-life balance. Your well-being matters to us.
- We strive to create an inclusive work environment where people of all backgrounds are respected, and valued for who they are.
- You'll receive benefits like annual bonus, paid vacation, pension plans, personal insurance, and more. These vary by country and contract, but they're worth asking about-we think they're pretty great.
Vacancy posted 18 hours ago
Similar jobs that could be interesting for youBased on the CNC Operator 2nd Shift in Easley, SC vacancy
- ...Cnc Operator Are you looking for a growth opportunity? Come be a part of an exciting start up with an established global organization... ...in our state-of-the-art air conditioned facility on our 2nd shift (3:00 p.m. to 11:30 p.m.). What will I be doing? ~ Setting...Afternoon shiftTemporary work
$27.03 per day
...Description Job Title: 2nd Shift CNC Machine Operator Location: Greenville, SC Reports to: Production Supervisor Employment Type: Full-time Industry: Manufacturing | Mechanical Power Transmission Components | Engineering Services Job Function: Machining...Afternoon shiftHourly payFull timeShift work$81.7k - $136.7k
...electrify and decarbonize the world? We operate with a founder’s mindset. We deliver... ...What you’ll do This position is for 2nd shift. Program, process development, and shop... ...purpose turn/grind Generate and maintain CNC programs utilizing NX-CAM or other...Afternoon shiftContract workApprenticeshipRelocation package- ...JOB SUMMARY This position involves the operation of CNC Machinery tools in an efficient manner. The CNC Operator must demonstrate skills and knowledge required to maintain the operation of a CNC machine and fulfill the essential functions of the job. Reports to...SuggestedImmediate start
- ...Join Our Client Join our client, a global manufacturing leader, as a 2nd shift CNC Programmer in Greenville, SC! We are seeking an expert with 4+ years of CAM CNC programming experience who is ready to drive positive change. Elevate your career in this dynamic role...Afternoon shift
- ...Start your new career as a CNC Machinist with MAU at General Electric in Greenville... ...CNC Machinist, you will set up and operate of a variety of metalworking equipment... ...Offer $25.50 per hour, $1 shift differential on 2nd or 3rd shifts 8-hour shifts; Monday...Afternoon shiftHourly payMonday to FridayMonday to ThursdayShift workNight shift
$20.5 - $21 per hour
...Start your new career as a Machine Operator with MAU at our client in Clemson, SC. As a... ...Offer $20.50 - $21.00 per hour plus $2 shift differential after first shift training... ...Basic computer skills and exposure to CNC machinery Capacity to comprehend, follow...Afternoon shiftHourly payMonday to FridayShift workDay shift- ...CNC Programmer Visium Resources has been asked to identify qualified candidates for... ...contract extension. This position is for 2nd shift CNC programming and shop support / development... ....E. (Manufacturing Engineer) and provide operator training during new / rebuilt machine...Afternoon shiftContract work
- CNC Machinist/Operator -Greenville, SC At Hall Industries, Inc., Piedmont Manufacturing Div, Greenville, SC, we are successful because of our... ...Must be resourceful and a self-starter. Available to work 2nd Shift of necessary. Full Time Position: Competitive compensation...Afternoon shiftFull timeMonday to FridayShift workDay shift
- ...CNC Machinists The CNC Machine Operator operates and handles production equipment and computer controlled machines from setup to completion to produce... ...birthday! ~ Paid weekly ~$1.50 differential for second shift and $2.50 differential for 3rd shift About...Afternoon shiftHourly payWeekly payImmediate startWorldwideNight shift
- ...CNC Machinists Wanted: Join a Team That Powers the World! Location: Pelham... ...Job Type: Full-Time - Second Shift (Monday-Thursday 4:00 PM - 2:00 AM) All 2nd Shift hours worked include a 10% shift... ...Duties and Responsibilities: Operate basic manual and CNC shop...Afternoon shiftFull timeWork at officeLocal areaAll shiftsShift work
$41.6k - $54.08k
...Hiring CNC Machine Operator! 1st shift: 6a-6p (M-Th) 2nd shift : 6p - 6a (M-Th) $20-26/hr (BOE) Job Description: This role is responsible for operating CNC equipment within a steel fabrication environment, ensuring production goals are met while maintaining high...Afternoon shiftWeekly payPermanent employmentTemporary workDay shift$24.76 per hour
...CNC Machine Operator - JTEKT 3rd Shift Openings | New Pay Increase! JTEKT is actively hiring CNC Machine Operators to support continued plant expansion and increased production demand within our highly automated manufacturing facility in Piedmont, SC. This is...Shift workNight shift- ...Job Description Job Description The CNC Machinist/Operator plays a critical role in the production process by setting up and operating milling... ...manufactured parts meet strict specifications during day shift hours. Schedule: Monday–Friday, 7:00 AM–3:30 PM (Day Shift...Monday to FridayDay shift
- ...CNC Operator MAPAL Inc. is the US subsidiary of the MAPAL Group. It employs more than 160 team members at two locations in the United States... ...aptitude High quality awareness Willingness to work all shifts and when necessary overtime Eager and ready to learn Demonstrated...WorldwideAll shifts
- ...Start your new career as an CNC Operator with MAU at General Electric in Greenville, SC. As an Entry-level CNC Operator, you will set up... ...tasks. What We Offer: ~ $23.00 per hour, $1 shift differential on Second or Third shifts ~8-hour shifts; Monday...Hourly payMonday to FridayMonday to ThursdayShift work
$25 - $28 per hour
...Company Description Job Description Summary Set-up and operate one or more CNC Mill or Lathe machines to perform machining operations on a... ...performing the duties of this job, for length of 8-10 hour shift, the employee is frequently required to stand and walk and...Work experience placementWorldwideRelocation packageShift work$30 - $40 per hour
...CNC Programmer / Machinist Department: Manufacturing Indirect Employment Type: Full Time Location: Liberty, SC Reporting... ...require the machinist to use manual as well as program, set-up and operate CNC equipment to assist the Mechanical Design/R&D group and...Hourly payPermanent employmentFull timeContract workFlexible hours2 days per week$25 - $30 per hour
...a local client in their search to for a CNC Machinist position in Taylors, SC. As a CNC... ...will be responsible for setting up and operating CNC machinery to produce springs. Apply Now... ...math skills Hours/Work Schedule: 1st shift 7am-3:30pm Monday-Friday (OT on as needed...Local areaMonday to FridayDay shift- ...Job Description Job Description Overview We are seeking a skilled and detail-oriented CNC Operator to join our dynamic team in Greenville, SC. As a CNC Operator, you will play a crucial role in our manufacturing process, ensuring precision and quality in every part...
- ...Laser Programmer/Operator The purpose of the Laser Operator/Programmer is to operate and maintain laser cutting machines to cut and engrave... ...: High school diploma/ GED and 2 years of experience in CNC Programming Ability to operate laser machinery Attention to...
$18 per hour
...Job Description Job Description CNC Lathe Operator | Traveler’s Rest, SC |1 st shift | $18 .00+ per hour DOE | Monday - Friday 8 :00 a m – 5 :00 p m What Matters Most ~ Location: Traveler’s Rest, SC ~1st Shift: 8:00 am – 5:00 pm Monday – Friday ~ Pay...Hourly payMonday to FridayShift workDay shift- ...privately held business that has been in operation for 85 years. Our Products are produced at... ...facility utilizing state-of-the-art CNC Lathes, mills, presses and cold formers.... ...routine machine maintenance prior to each shift to ensure all oils, lubricants and coolant...Shift workWeekend work
$25 - $30 per hour
...Arlington, TN is expanding and actively hiring experienced CNC Machinists and Machine Operators who are open to relocating for career growth and... ...Finishing Operators Robot Operators Compensation & Shift Premiums ~ Starting Pay: $25–$30/hour ~5% Shift Differential...Afternoon shiftImmediate startRelocationRelocation packageShift workNight shift$62k
...success—is seeking a self-driven, team-oriented CNC Lathe Machinist for our state-of-the-art,... .... What You'll Do: Program & Operate: Complete full setup, programming (using M... ...warm-up programs and perform routine pre-shift machine maintenance to keep production running...Afternoon shiftPermanent employmentTemporary workWork experience placementShift work$41.59 per hour
...summary: Join Our Client, a global manufacturing leader, as a 2nd shift CNC Programmer in Greenville, SC! We are seeking an expert with 4... ...Manufacturing Engineers, and deliver targeted training to operators during machine startups and process updates. Develop clear...Afternoon shiftHourly payContract workTemporary workWork experience placement- ...Description CompX National is hiring a CNC Machinist for our Second Shift Visit the following link to... ...Referral Reward Program Shift: 2nd Monday - Friday 3:30 PM - Midnight... ...Position Responsibilities: Set-up and operate CNC Vertical Mills. Operate multiple...Afternoon shiftMonday to FridayFlexible hoursShift workNight shift
- ...Swiss CNC Machinist Opening with an industry leading manufacturing operation in Greenville, SC. Must have 4+ years of Machinist experience to be considered. This role focuses on setup, operation, and inspection of Swiss-style CNC lathes in a team-based environment. Work...
$24 - $30 per hour
...blueprints and welding callouts in designs Use various measuring methods and tools, such as calipers, micrometers, and scales Operate other hand-welding equipment and flame-cutting equipment such as oxyacetylene torch or similar for cutting, heating, or brazing...Afternoon shiftHourly payPermanent employmentContract work- WILBERT INC As a part of the global industrial organization Marmon Holdings-which is backed by Berkshire Hathaway- you'll be doing things that matter, leading at every level, and winning a better way. We're committed to making a positive impact on the world, providing ...Afternoon shift
Do you want to receive more vacancies?
Subscribe and receive similar vacancies to CNC Operator 2nd Shift. Be the first to apply!



