mirror of https://github.com/harish2704/dotFiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
319 B
14 lines
319 B
export appName='iojs-v2.3.4-linux-x64';
|
|
export installationPath="$appDir/$appName";
|
|
|
|
downloadPack(){
|
|
wget -c 'https://iojs.org/dist/v2.3.4/iojs-v2.3.4-linux-x64.tar.xz';
|
|
}
|
|
|
|
installPack(){
|
|
tar -xJvf 'iojs-v2.3.4-linux-x64.tar.xz';
|
|
cd "$appName";
|
|
find ./bin -type f -or -type l -executable > 'binaries.lst';
|
|
}
|
|
|
|
|
|
|