1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Ubuntu] ファイルをコピーするスクリプトファイル

Posted at

ビルドしたファイルをアプリケーションの実行用ディレクトリに手動でコピーしていたら、
先輩から
「バッチファイルで出来ないのか?!」と有難いお言葉を頂いた。
忘れてもいいようにメモしておく。

#スクリプトファイルを作る
  #!/bin/bash
  
  cp (コピーするファイル名) (コピー先) 

#ダブルクリックで実行できるようにする
  そのままだとダブルクリックした際にテキストファイルとして開いてしまう。

  ファイルマネージャーみたいなのを開き、
  image.png
  メーニューから[編集(E)]-[設定(N)]を選択
  image.png
  image.png
ダイアログが開いたら [動作]タブを選択して、
  "実行可能なテキストファイル"の項目で
  "クリックしたら実行する(R)"か"毎回確認する(A)"を選択
  image.png

※スクリプトファイルの先頭が #!bin/sh だとコピーが実行されなかった・・・

以上

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?