0
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 1 year has passed since last update.

Chromebook 自作コマンドの作成(XAMPP)

Last updated at Posted at 2023-02-10

Chromebookも他のLinuxと同じだったので一応残しときます。

今回はxamppのコマンドを作ります。

cd /usr/bin
sudo nano xampp

中身はこんな感じ。$1が引数ですね。

#!/bin/sh
sudo /opt/lampp/lampp $1

権限の変更をお忘れなく。

sudo chmod 755 xampp

以下のコマンドで起動(停止)できます。

xampp start(or stop)

お疲れ様でございました。

0
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
0
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?