Sign Up
Login
API
FAQ
Tools
Trends
Archive
PASTEBIN
new paste
trends
API
tools
faq
Guest User
-
Public Pastes
Untitled
2 sec ago
Untitled
8 sec ago
Untitled
14 sec ago
Untitled
21 sec ago
Untitled
27 sec ago
Untitled
32 sec ago
Untitled
33 sec ago
Curl dari domain y...
PHP | 36 sec ago
daily pastebin
goal
11%
help support pastebin
SHARE
TWEET
Untitled
asfelix
Jan 12th, 2016
49
Never
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
raw
download
clone
embed
report
print
Bash
0.13 KB
#!/bin/bash
destfile
=
/
home
/
user
/
teste.txt
array
=
(
$
(
ls
20151
*
|
awk
'{ print $9 }'
)
)
n
=
${array[@]}
echo
"
$n
"
>
"
$destfile
"
RAW Paste Data
#!/bin/bash destfile=/home/user/teste.txt array=($(ls 20151* |awk '{ print $9 }')) n=${array[@]} echo "$n" > "$destfile"
Top