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 161323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T11:11:34+00:00 2026-05-11T11:11:34+00:00

So I am trying to write an .sh file that will be executable, this

  • 0

So I am trying to write an .sh file that will be executable, this is how I’m currently writing it:

Writer output = null;  try {   output = new BufferedWriter(new FileWriter(file2));   output.write(shellScriptContent);   output.close(); } catch (IOException ex) {   Logger.getLogger(PunchGUI.class.getName()).log(Level.SEVERE, null, ex); } 

So that writes the file just fine, but it is not executable. Is there a way to change the executable status when I write it?

Edit: To further clarify, I am trying to make it execute by default, so that for instance, if you double clicked the generated file, it would automatically execute.

  • 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. 2026-05-11T11:11:35+00:00Added an answer on May 11, 2026 at 11:11 am

    You’d need to chmod it, and you can probably do it by exec’ing a system command like such:

    Really all you’d need is to fire off something like this:

    Runtime.getRuntime().exec('chmod u+x '+FILENAME); 

    But if you want to keep track of it more explicitly can capture stdin / stderr then something more like:

    Process p = Runtime.getRuntime().exec('chmod u+x '+FILENAME); BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()));     BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream())); 

    Which I got from here: http://www.devdaily.com/java/edu/pj/pj010016/pj010016.shtml

    Update:

    Test program:

    package junk; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.io.Writer;  public class Main{   private String scriptContent = '#!/bin/bash \n echo 'yeah toast!' > /tmp/toast.txt';   public void doIt(){     try{       Writer output = new BufferedWriter(new FileWriter('/tmp/toast.sh'));       output.write(scriptContent);       output.close();       Runtime.getRuntime().exec('chmod u+x /tmp/toast.sh');     }catch (IOException ex){}   }    public static void main(String[] args){     Main m = new Main();     m.doIt();   }  } 

    On linux if you open up a file browser and double click on /tmp/toast.sh and choose to run it, it should generate a text file /tmp/toast.txt with the words ‘yeah toast’. I assume Mac would do the same since it’s BSD under the hood.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 118k
  • Answers 118k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Have you considered Dynamic LINQ? May 11, 2026 at 11:40 pm
  • Editorial Team
    Editorial Team added an answer The problem is that with a negabinary (base -2) system,… May 11, 2026 at 11:40 pm
  • Editorial Team
    Editorial Team added an answer Using jQuery Selectors, you can target your element by a… May 11, 2026 at 11:40 pm

Related Questions

I am trying to write an interface between RSPEC (ruby flavoured BDD) and a
I am trying to use Difflib.SequenceMatcher to compute the similarities between two files. These
I was hoping to implement a simple XMPP server in Java. What I need
I am trying to write an extention method for a repository. The repository has

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.