Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8031217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T01:01:10+00:00 2026-06-05T01:01:10+00:00

I have a javascript file with a jquery function call: $.getScript(‘/scripts/files/file.js’); I want to

  • 0

I have a javascript file with a jquery function call:

$.getScript('/scripts/files/file.js');

I want to replace that line with the contents of the file at that path. This is the bash script I have so far:

cat public/scripts/old.js | sed -e "s/$\.getScript\('(.)+'\);/$(cat \1)/g"  > public/scripts/new.js

However, my regular expression and remembering the path does not seem to be working correctly. I get cat: 1: No such file or directory
as it seems as if cat is being called on the number 1 (which should be the remembered portion of the regexp). How can I fix this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T01:01:12+00:00Added an answer on June 5, 2026 at 1:01 am

    Because you are using $() inside double quotes, the shell is parsing the cat \1, stripping the backslash and trying to run cat 1 to pass its output as part of the argument to sed. Sed has a command (r) for reading a file, but the filename must be literal, and cannot be the result of previous sed commands (at least in standard sed, perhaps some implementations provide that ability). sed is really the wrong tool for this. You could do an awk solution, but it will be fragile.

    Here’s a possible perl solution (warning: fragile):

    perl -ne 'if( $_ =~ /\$\.getScript\('"'(.*)'"'\)/ ) 
       { system( "cat $1" ) } else {print}' public/scripts/old.js
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple JavaScript file that has three jQuery $document.ready functions. All three
I have a javascript file main.js and five html files 1.html,2.html,3.html,4.html,5.html I want to
In my PHP/jQuery application, I have a javascript file, in which I can call
I have some jQuery code in an external Javascript file that is making an
I have javascript file in following directory /static /handler.js /evercookie.js /jquery.js All I want
Currently, I have a Javascript file (running on the client) that I call a
I have a javascript file which has a function calling a server (url) to
I have a JavaScript file that prints the title attribute of the child img
I have a JavaScript file that I ran through the Google Closure compiler, and
Suppose I have a Javascript file function js_main(args){ /* some code */ var x

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.